VerifyCodeForm constructor
const
VerifyCodeForm({
- Key? key,
- required String otpLabel,
- required VoidCallback onResend,
- required VoidCallback onEdit,
- required ValueChanged<
String> onVerify, - dynamic config,
- String? validator()?,
- required TextEditingController initialValue,
- bool isLoading = false,
- bool isSuccess = false,
- String? error,
Implementation
const VerifyCodeForm({
super.key,
required this.otpLabel,
required this.onResend,
required this.onEdit,
required this.onVerify,
this.config,
this.validator,
required this.initialValue,
this.isLoading = false,
this.isSuccess = false,
this.error,
});