VerificationElement constructor

const VerificationElement(
  1. {Key? key,
  2. required bool enabled,
  3. required String title,
  4. required String description,
  5. required Color colorStatus,
  6. required bool hasBeenVerifiedOnce,
  7. required bool verified,
  8. required String? info,
  9. required VoidCallback? action,
  10. 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);