pins abstract method Null safety

Future<void> pins(
  1. String oldPin,
  2. String newPin
)

Specify the old PIN and the new PIN.

To change a PIN, the SDK requires to provide the old PIN. When this method is invoked, the SDK will validate the provided PINs.

Params:

  • oldPin: the old PIN.
  • newPin: the new PIN.

Implementation

Future<void> pins(String oldPin, String newPin);