StorageException constructor

StorageException(
  1. String message,
  2. String code, {
  3. int errorCode = 500,
})

Implementation

StorageException(
  this.message,
  this.code, {
  this.errorCode = 500,
}) : super(
        code,
        errorCode: errorCode,
      );