PasswordChangeError.passwordLocked constructor

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

An error that indicates that the password was locked because of too many failures.

Params:

  • json: contains the source for instance creation.

Implementation

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