setTimezoneOverride method
Overrides default host system timezone with the specified one.
timezoneId
The timezone identifier. If empty, disables the override and
restores default host system timezone.
Implementation
Future<void> setTimezoneOverride(String timezoneId) async {
await _client.send('Emulation.setTimezoneOverride', {
'timezoneId': timezoneId,
});
}