Returns the isolate id. Returns: The isolate id.
Future<String> getIsolateId() async { var result = await _client.send('Runtime.getIsolateId'); return result['id'] as String; }