PasswordChangeError.userCanceled constructor

PasswordChangeError.userCanceled(
  1. Map<String, dynamic> json
)

An error that indicates that the password change was canceled.

Params:

  • json: contains the source for instance creation.

Implementation

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