onConsoleAPICalled property
Stream<ConsoleAPICalledEvent>
get
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));