canClearBrowserCache method

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

Tells whether clearing browser cache is supported. Returns: True if browser cache can be cleared.

Implementation

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