CookieOptions constructor

const CookieOptions({
  1. String? path,
  2. String? domain,
  3. bool? httpOnly,
  4. bool? secure,
  5. int? maxAge,
  6. DateTime? expires,
  7. String? sameSite,
})

Implementation

const CookieOptions({
  this.path,
  this.domain,
  this.httpOnly,
  this.secure,
  this.maxAge,
  this.expires,
  this.sameSite,
});