delete method

void delete(
  1. String name
)

Deletes the cookie with the given name.

Implementation

void delete(String name) {
  _client.send(_handler.cookies.buildDeleteCookieRequest(name),
      _handler.cookies.parseDeleteCookieResponse);
}