setShowLayoutShiftRegions method

Future<void> setShowLayoutShiftRegions(
  1. bool result
)

Requests that backend shows layout shift regions result True for showing layout shift regions

Implementation

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