Cookie constructor

Cookie({
  1. String? domain,
  2. int? expiresDate,
  3. bool? isHttpOnly,
  4. bool? isSecure,
  5. bool? isSessionOnly,
  6. required String name,
  7. String? path,
  8. HTTPCookieSameSitePolicy? sameSite,
  9. dynamic value,
})

Implementation

Cookie(
    {this.domain,
    this.expiresDate,
    this.isHttpOnly,
    this.isSecure,
    this.isSessionOnly,
    required this.name,
    this.path,
    this.sameSite,
    this.value});