setShowScrollBottleneckRects method

Future<void> setShowScrollBottleneckRects(
  1. bool show
)

Requests that backend shows scroll bottleneck rects show True for showing scroll bottleneck rects

Implementation

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