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