SessionCookieHandler constructor

SessionCookieHandler({
  1. String cookieName = defaultCookieName,
  2. Duration defaultMaxAge = const Duration(hours: 24),
  3. bool secure = false,
  4. bool httpOnly = true,
  5. String sameSite = 'lax',
  6. String? domain,
})

Implementation

SessionCookieHandler({
  this.cookieName = defaultCookieName,
  this.defaultMaxAge = const Duration(hours: 24),
  this.secure = false,
  this.httpOnly = true,
  this.sameSite = 'lax',
  this.domain,
});