StorageOpts constructor

StorageOpts({
  1. StorageEncryption? encryption,
  2. bool? migrate,
  3. StorageType? type,
  4. CookieOptions? cookie,
  5. Map<UserSessionKey, StorageEntry>? entries,
})

Implementation

StorageOpts({
  this.encryption,
  this.migrate,
  this.type,
  this.cookie,
  this.entries,
});