PinChangeRecoverableError.oldPinEqualsNewPin constructor

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

Alternate constructor to create a PinChangeRecoverableOldPinEqualsNewPin.

Params:

  • json: contains the source for instance creation.

Implementation

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