StorageException constructor

const StorageException({
  1. required String message,
  2. String? key,
  3. Object? cause,
  4. StackTrace? stackTrace,
})

Implementation

const StorageException({
  required this.message,
  this.key,
  this.cause,
  this.stackTrace,
});