delete static method

void delete(
  1. String name, {
  2. String path = '/',
})

Delete a cookie

Implementation

static void delete(String name, {String path = '/'}) {
  _response.clearCookie(name, path: path);
}