setFocusEmulationEnabled method
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,
});
}