delete abstract method

void delete(
  1. String name, {
  2. DateTime? expires,
  3. int? maxAge,
  4. String? domain,
  5. String? path,
  6. bool? secure,
  7. bool? httpOnly,
  8. SameSite? sameSite,
  9. bool? partitioned,
})

Deletes a cookie.

Implementation

void delete(
  String name, {
  DateTime? expires,
  int? maxAge,
  String? domain,
  String? path,
  bool? secure,
  bool? httpOnly,
  SameSite? sameSite,
  bool? partitioned,
});