MemoryAdapter constructor

MemoryAdapter({
  1. bool enableEncryption = false,
  2. String? encryptionKey,
})

Creates a new instance of MemoryAdapter.

Implementation

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