PinChangeRecoverableInvalidPin.fromJson constructor

PinChangeRecoverableInvalidPin.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates a PinChangeRecoverableInvalidPin from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory PinChangeRecoverableInvalidPin.fromJson(Map<String, dynamic> json) {
  return PinChangeRecoverableInvalidPinImpl.fromJson(json);
}