VerificationForm constructor

const VerificationForm({
  1. required String title,
  2. required EmailAuthController controller,
  3. required VoidCallback onCompleted,
  4. required VerificationCodeConfig verificationCodeConfig,
  5. String? messageText,
  6. String? verifyButtonLabel,
  7. Key? key,
})

Creates a VerificationForm widget.

Implementation

const VerificationForm({
  required this.title,
  required this.controller,
  required this.onCompleted,
  required this.verificationCodeConfig,
  this.messageText,
  this.verifyButtonLabel,
  super.key,
});