SqliteStore<I extends Info, E extends Entry<I>> constructor

SqliteStore<I extends Info, E extends Entry<I>>(
  1. SqliteAdapter<I, E> _adapter, {
  2. StoreCodec? codec,
})

Builds a SqliteStore.

  • _adapter: The SqliteAdapter
  • codec: The StoreCodec used to convert to/from a Map<String, dynamic>` representation to binary representation

Implementation

SqliteStore(this._adapter, {super.codec});