VerificationCodeInput constructor
const
VerificationCodeInput({
- required VoidCallback onCompleted,
- required TextEditingController verificationCodeController,
- required bool isLoading,
- int length = 8,
- TextInputType keyboardType = TextInputType.text,
- LetterCase allowedLetterCase = LetterCase.mixed,
- Pattern? allowedCharactersPattern,
- FocusNode? focusNode,
- Key? key,
Creates a VerificationCodeInput widget.
Implementation
const VerificationCodeInput({
required this.onCompleted,
required this.verificationCodeController,
required this.isLoading,
this.length = 8,
this.keyboardType = TextInputType.text,
this.allowedLetterCase = LetterCase.mixed,
this.allowedCharactersPattern,
this.focusNode,
super.key,
});