LoginTemplateConfirmCodePage constructor

const LoginTemplateConfirmCodePage({
  1. Key? key,
  2. required LoginTemplateStyle style,
  3. String textMessage = 'Enter the 6 digit code sent to you at ******.',
  4. String buttonTextNext = 'Confirm',
  5. required dynamic onPressedNext(),
  6. TextInputAction textInputActionCode = TextInputAction.done,
  7. TextInputType keyboardTypeCode = TextInputType.number,
  8. String hintTextCode = 'Code',
  9. String? errorTextCode,
  10. List<TextInputFormatter>? inputFormattersCode,
  11. dynamic onTapCode()?,
  12. TextEditingController? controllerCode,
  13. String buttonTextResend = 'Resend',
  14. required dynamic onPressedResend(),
  15. String textMessageResend = 'Not received, even at Spam folder?',
})

Constructor

Implementation

const LoginTemplateConfirmCodePage({
  Key? key,
  required this.logo,
  required this.style,
  this.textMessage: 'Enter the 6 digit code sent to you at ******.',
  this.buttonTextNext: 'Confirm',
  required this.onPressedNext,
  this.textInputActionCode: TextInputAction.done,
  this.keyboardTypeCode: TextInputType.number,
  this.hintTextCode: 'Code',
  this.errorTextCode,
  this.inputFormattersCode,
  this.onTapCode,
  this.controllerCode,
  this.buttonTextResend: 'Resend',
  required this.onPressedResend,
  this.textMessageResend: 'Not received, even at Spam folder?',
}) : super(key: key);