setShowIsolatedElements method
Future<void>
setShowIsolatedElements(
- List<
IsolatedElementHighlightConfig> isolatedElementHighlightConfigs
Show elements in isolation mode with overlays.
isolatedElementHighlightConfigs
An array of node identifiers and descriptors for the highlight appearance.
Implementation
Future<void> setShowIsolatedElements(
List<IsolatedElementHighlightConfig>
isolatedElementHighlightConfigs) async {
await _client.send('Overlay.setShowIsolatedElements', {
'isolatedElementHighlightConfigs': [...isolatedElementHighlightConfigs],
});
}