setShowWebVitals method

Future<void> setShowWebVitals(
  1. bool show
)

Request that backend shows an overlay with web vital metrics.

Implementation

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