fromMap static method

StorageException fromMap(
  1. Map<String, String> serializedException
)

Instantiates and returns a new StorageException from the serialized exception data

Implementation

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