storageAPI property

StorageAPI storageAPI

Implementation

StorageAPI get storageAPI {
  if (!storageAPIIsInitialized) {
    throw const StorageDatabaseException(
      'StorageAPI service has not initialized yet',
    );
  }
  return _storageAPI!;
}