fromMap static method

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

Instantiates and return a new AmplifyException from the serialized exception data

Implementation

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