PasswordChangeUserCanceled.fromJson constructor

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

Alternate constructor that creates a PasswordChangeUserCanceled from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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