PinUserVerificationError.fromJson constructor
- Map<
String, dynamic> json
Alternate constructor that creates PinUserVerificationError from a json.
Params:
- json: contains the type and data for instance creation.
Implementation
factory PinUserVerificationError.fromJson(Map<String, dynamic> json) {
return const PinUserVerificationErrorConverter().fromJson(json);
}