PinChangeRecoverableInvalidPinFormat.fromJson constructor Null safety

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

Alternate constructor that creates a PinChangeRecoverableInvalidPinFormat from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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