Cookie constructor

Cookie(
  1. String? name,
  2. String? value, {
  3. String? path,
  4. String? domain,
  5. bool? secure,
  6. DateTime? expiry,
})

Implementation

Cookie(
  this.name,
  this.value, {
  this.path,
  this.domain,
  this.secure,
  this.expiry,
});