spidr_storage 1.1.0 copy "spidr_storage: ^1.1.0" to clipboard
spidr_storage: ^1.1.0 copied to clipboard

Modular storage abstractions supporting SQLite, Isar, and IndexedDB for SPIDR.

example/main.dart

import 'package:spidr_storage/spidr_storage.dart';

void main() async {
  final storage = MemoryStorageAdapter();
  await storage.open();

  await storage.write('active_session_id', 'session_abc123');
  final session = await storage.read('active_session_id');
  print('SPIDR Session persisted successfully: $session');

  await storage.close();
}
0
likes
130
points
136
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Modular storage abstractions supporting SQLite, Isar, and IndexedDB for SPIDR.

Homepage
Repository (GitHub)
View/report issues
Contributing

License

MIT (license)

Dependencies

isar, meta, spidr_core, sqlite3

More

Packages that depend on spidr_storage