setFocusEmulationEnabled method

Future<void> setFocusEmulationEnabled(
  1. bool enabled
)

Enables or disables simulating a focused and active page. enabled Whether to enable to disable focus emulation.

Implementation

Future<void> setFocusEmulationEnabled(bool enabled) async {
  await _client.send('Emulation.setFocusEmulationEnabled', {
    'enabled': enabled,
  });
}