quit method

Future<void> quit({
  1. bool closeSession = true,
})

Quits the browser.

Implementation

Future<void> quit({bool closeSession = true}) => closeSession
    ? _client.send(_handler.core.buildDeleteSessionRequest(),
        _handler.core.parseDeleteSessionResponse)
    : Future.value();