canEmulateNetworkConditions method

  1. @Deprecated('This command is deprecated')
Future<bool> canEmulateNetworkConditions()

Tells whether emulation of network conditions is supported. Returns: True if emulation of network conditions is supported.

Implementation

@Deprecated('This command is deprecated')
Future<bool> canEmulateNetworkConditions() async {
  var result = await _client.send('Network.canEmulateNetworkConditions');
  return result['result'] as bool;
}