delete method

Future<void> delete(
  1. String name
)

Deletes the cookie with the given name.

Implementation

Future<void> delete(String name) => _client.send(
    _handler.cookies.buildDeleteCookieRequest(name),
    _handler.cookies.parseDeleteCookieResponse);