delete method Null safety
- String name
Deletes the cookie with the given name
.
Implementation
Future<void> delete(String name) => _client.send(
_handler.cookies.buildDeleteCookieRequest(name),
_handler.cookies.parseDeleteCookieResponse);
Deletes the cookie with the given name
.
Future<void> delete(String name) => _client.send(
_handler.cookies.buildDeleteCookieRequest(name),
_handler.cookies.parseDeleteCookieResponse);