setRemoteLocations method

Future<void> setRemoteLocations(
  1. List<RemoteLocation> locations
)

Enables target discovery for the specified locations, when setDiscoverTargets was set to true. locations List of remote locations.

Implementation

Future<void> setRemoteLocations(List<RemoteLocation> locations) async {
  await _client.send('Target.setRemoteLocations', {
    'locations': [...locations],
  });
}