EncryptionKeyManager constructor

EncryptionKeyManager({
  1. required String storageKey,
  2. Uint8List? providedKey,
  3. bool autoResetKey = false,
})

Implementation

EncryptionKeyManager({
  required this.storageKey,
  this.providedKey,
  this.autoResetKey = false,
});