SqliteVaultStore constructor

SqliteVaultStore(
  1. SqliteAdapter<VaultInfo, VaultEntry> adapter, {
  2. StoreCodec? codec,
})

Builds a SqliteVaultStore.

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

Implementation

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