windows property
Handles for all of the currently displayed tabs/windows.
Implementation
List<Window> get windows => _client.send(
_handler.window.buildGetWindowsRequest(),
(response) => _handler.window
.parseGetWindowsResponse(response)
.map<Window>((w) => Window(_client, _handler, w))
.toList());