CookieParam constructor

CookieParam({
  1. required String name,
  2. required String value,
  3. String? url,
  4. String? domain,
  5. String? path,
  6. bool? secure,
  7. bool? httpOnly,
  8. CookieSameSite? sameSite,
  9. TimeSinceEpoch? expires,
  10. CookiePriority? priority,
  11. bool? sameParty,
  12. CookieSourceScheme? sourceScheme,
  13. int? sourcePort,
  14. 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});