fromMap static method

AuthException fromMap(
  1. Map<String, String> serializedException
)
override

Returns a new instance of this exception constructed from the serialized exception data.

Implementation

static AuthException fromMap(Map<String, String> serializedException) {
  return AuthException._private(
    AmplifyException.fromMap(serializedException),
  );
}