PasswordChangeUnknownError.fromJson constructor

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

Alternate constructor that creates a PasswordChangeUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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