CookieParam constructor
CookieParam({
- required String name,
- required String value,
- String? url,
- String? domain,
- String? path,
- bool? secure,
- bool? httpOnly,
- CookieSameSite? sameSite,
- TimeSinceEpoch? expires,
- CookiePriority? priority,
- bool? sameParty,
- CookieSourceScheme? sourceScheme,
- int? sourcePort,
- String? partitionKey,
Implementation
CookieParam(
{required this.name,
required this.value,
this.url,
this.domain,
this.path,
this.secure,
this.httpOnly,
this.sameSite,
this.expires,
this.priority,
this.sameParty,
this.sourceScheme,
this.sourcePort,
this.partitionKey});