windows property

List<Window> windows

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());