quit method

void quit(
  1. {bool closeSession = true}
)

Quits the browser.

Implementation

void quit({bool closeSession = true}) {
  if (closeSession) {
    _client.send(_handler.core.buildDeleteSessionRequest(),
        _handler.core.parseDeleteSessionResponse);
  }
}