PinChangeUnknownError.fromJson constructor

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

Alternate constructor that creates a PinChangeUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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