store_box library

A fast, enjoyable, and secure NoSQL database for Dart and Flutter.

To use StoreBox, you must first call StoreBox().init() with a valid directory. Then you can open boxes and use them to store your data.

Classes

Box<V>
LazyBox<V>
A conceptual class for a LazyBox. A LazyBox does not load all its data into memory when it is opened. Instead, it reads values from the disk on-demand.
StoreBox
A fast and simple NoSQL database for Dart and Flutter.
TypeAdapter<T>
A TypeAdapter allows you to serialize and deserialize any custom object.

Exceptions / Errors

StoreBoxException
A custom exception for StoreBox-specific errors.