otpLength property

  1. @ActualInt32()
int get otpLength

Implementation

@ActualInt32() int get otpLength => _otpLength;
  1. @ActualInt32()
set otpLength (int value)

Implementation

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