SqliteCacheStore constructor

SqliteCacheStore(
  1. SqliteAdapter<CacheInfo, CacheEntry> adapter, {
  2. StoreCodec? codec,
})

Builds a SqliteCacheStore.

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

Implementation

SqliteCacheStore(super.adapter, {super.codec});