close method

Future<void> close()

Closes the WebDriver.

Implementation

Future<void> close() async {
  await _driver.quit(closeSession: false);
}