PinChangeRecoverableError.invalidPinFormat constructor

PinChangeRecoverableError.invalidPinFormat(
  1. Map<String, dynamic> json
)

Alternate constructor to create a PinChangeRecoverableInvalidPinFormat.

Params:

  • json: contains the source for instance creation.

Implementation

factory PinChangeRecoverableError.invalidPinFormat(
  Map<String, dynamic> json,
) {
  return PinChangeRecoverableInvalidPinFormat.fromJson(json);
}