quit method Null safety
- {bool closeSession = true}
Quits the browser.
Implementation
void quit({bool closeSession = true}) {
if (closeSession) {
_client.send(_handler.core.buildDeleteSessionRequest(),
_handler.core.parseDeleteSessionResponse);
}
}