StorageException constructor

const StorageException(
  1. String message, {
  2. String? recoverySuggestion,
  3. String? underlyingException,
})

Named constructor

Implementation

const StorageException(String message,
    {String? recoverySuggestion, String? underlyingException})
    : super(message,
          recoverySuggestion: recoverySuggestion,
          underlyingException: underlyingException);