onInspectPanelShowRequested property
Stream<BackendNodeId>
get
onInspectPanelShowRequested
Fired when user asks to show the Inspect panel.
Implementation
Stream<dom.BackendNodeId> get onInspectPanelShowRequested => _client.onEvent
.where((event) => event.name == 'Overlay.inspectPanelShowRequested')
.map(
(event) => dom.BackendNodeId.fromJson(
event.parameters['backendNodeId'] as int,
),
);