FileCacheStore constructor

FileCacheStore(
  1. FileAdapter adapter,
  2. bool lock, {
  3. StoreCodec? codec,
})

Builds a FileCacheStore.

  • adapter: The adapter
  • lock: If locks are obtained before doing read/write operations
  • codec: The StoreCodec used to convert to/from a Map<String, dynamic>` representation to binary representation

Implementation

FileCacheStore(super.adapter, super.lock, {super.codec});