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