onConsoleAPICalled property

Stream<ConsoleAPICalledEvent> onConsoleAPICalled

Issued when console API was called.

Implementation

Stream<ConsoleAPICalledEvent> get onConsoleAPICalled => _client.onEvent
    .where((event) => event.name == 'Runtime.consoleAPICalled')
    .map((event) => ConsoleAPICalledEvent.fromJson(event.parameters));