onInspectRequested property

Stream<InspectRequestedEvent> onInspectRequested

Issued when object should be inspected (for example, as a result of inspect() command line API call).

Implementation

Stream<InspectRequestedEvent> get onInspectRequested => _client.onEvent
    .where((event) => event.name == 'Runtime.inspectRequested')
    .map((event) => InspectRequestedEvent.fromJson(event.parameters));