VerificationElement constructor
const
VerificationElement(- {Key? key,
- required bool enabled,
- required String title,
- required String description,
- required Color colorStatus,
- required bool hasBeenVerifiedOnce,
- required bool verified,
- required String? info,
- required VoidCallback? action,
- required bool loader}
)
Implementation
const VerificationElement({
Key? key,
required this.enabled,
required this.title,
required this.description,
required this.colorStatus,
required this.hasBeenVerifiedOnce,
required this.verified,
required this.info,
required this.action,
required this.loader,
}) : super(key: key);