otpLength property
Implementation
@ActualInt32() int get otpLength => _otpLength;
Implementation
@ActualInt32() set otpLength(int value) {
if (value > 2147483647) {
throw ArgumentError('otpLength value cannot exceed 2147483647');
}
_otpLength = value;
}