VerificationCodeConfig constructor
const
VerificationCodeConfig({
- int length = 8,
- TextInputType keyboardType = TextInputType.text,
- LetterCase allowedLetterCase = LetterCase.lowercase,
- Duration resendCountdownDuration = const Duration(minutes: 1),
- Pattern? allowedCharactersPattern,
Creates a VerificationCodeConfig with the given parameters.
Implementation
const VerificationCodeConfig({
this.length = 8,
this.keyboardType = TextInputType.text,
this.allowedLetterCase = LetterCase.lowercase,
this.resendCountdownDuration = const Duration(minutes: 1),
this.allowedCharactersPattern,
});