CookieOptions constructor

CookieOptions({
  1. String domain = '',
  2. int expiration = 365,
  3. String sameSite = 'Lax',
  4. bool secure = false,
  5. bool upgrade = true,
})

Implementation

CookieOptions({
  this.domain = '',
  this.expiration = 365,
  this.sameSite = 'Lax',
  this.secure = false,
  this.upgrade = true,
});