setScrollbarsHidden method

Future<void> setScrollbarsHidden(
  1. bool hidden
)

hidden Whether scrollbars should be always hidden.

Implementation

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