PinChangeError.fromJson constructor
- Map<
String, dynamic> json
Alternate constructor to create a PinChangeError from json.
Params:
- json: contains the source for instance creation.
Implementation
factory PinChangeError.fromJson(Map<String, dynamic> json) {
return const PinChangeErrorConverter().fromJson(json);
}