canClearBrowserCache method
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;
}