setShowAdHighlights method

Future<void> setShowAdHighlights(
  1. bool show
)

Highlights owner element of all frames detected to be ads. show True for showing ad highlights

Implementation

Future<void> setShowAdHighlights(bool show) async {
  await _client.send('Overlay.setShowAdHighlights', {
    'show': show,
  });
}