CookieOptions constructor

CookieOptions({
  1. int? maxage,
  2. DateTime? expires,
  3. String? path,
  4. String? domain,
  5. String? samesite,
  6. bool? secure,
})

Implementation

CookieOptions({
  this.maxage,
  this.expires,
  this.path,
  this.domain,
  this.samesite,
  this.secure,
});