setShowFPSCounter method

Future<void> setShowFPSCounter(
  1. bool show
)

Requests that backend shows the FPS counter show True for showing the FPS counter

Implementation

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