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