pinPolicy property Null safety

PinPolicy pinPolicy

Returns the object defining the minimum and maximum length of the PIN.

If not implemented, it will return a PIN policy with a minimum and maximum length of 6 digits.

Implementation

PinPolicy get pinPolicy => PinPolicyImpl(maxLength: 6, minLength: 6);