fromMap static method

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

Instantiates and return a new DataStoreException from the serialized exception data

Implementation

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