fromJson static method
Implementation
static AuthenticationFailReason? fromJson(int index) {
switch (index) {
case 0:
return invalidCredentials;
case 1:
return userCreationDenied;
case 2:
return internalError;
case 3:
return tooManyFailedAttempts;
default:
return null;
}
}