canEmulate method

Future<bool> canEmulate()

Tells whether emulation is supported. Returns: True if emulation is supported.

Implementation

Future<bool> canEmulate() async {
  var result = await _client.send('Emulation.canEmulate');
  return result['result'] as bool;
}