ClientCookie constructor

ClientCookie(
  1. String name,
  2. String value,
  3. DateTime createdAt, {
  4. String? domain,
  5. DateTime? expires,
  6. bool httpOnly = false,
  7. int? maxAge,
  8. bool secure = false,
  9. String? path,
})

Implementation

ClientCookie(this.name, this.value, this.createdAt,
    {this.domain,
    this.expires,
    this.httpOnly: false,
    this.maxAge,
    this.secure: false,
    this.path});