HiveCookieStorage constructor

HiveCookieStorage({
  1. String? boxName,
  2. HiveCipher? encryptionCipher,
})

Initialize the cookie storage with an optional encryptionCipher.

Implementation

HiveCookieStorage({
  this.boxName,
  this.encryptionCipher,
}) : fileStorageDir = null;