canEmulate method
Tells whether emulation is supported. Returns: True if emulation is supported.
Implementation
@Deprecated('This command is deprecated')
Future<bool> canEmulate() async {
var result = await _client.send('Emulation.canEmulate');
return result['result'] as bool;
}