SqliteAdapter constructor

SqliteAdapter({
  1. String? boxName,
  2. bool enableEncryption = false,
  3. String? encryptionKey,
})

Implementation

SqliteAdapter(
    {this.boxName, this.enableEncryption = false, String? encryptionKey})
    : _encryptionKey = encryptionKey ?? 'default_secret_key';