PasswordChangeError.userNotResponsive constructor

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

The error that occurs when the user took too long to provide the password during the change operation.

Params:

  • json: contains the source for instance creation.

Implementation

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