instance property

StorageAPI get instance

Implementation

static StorageAPI get instance {
  if (!hasInstance) {
    throw const StorageDatabaseException(
      'StorageAPI instance has not initialized yet',
    );
  }

  return _instance!;
}