removeService method

Future<void> removeService(
  1. String serviceId
)

Removes the service respresented by |serviceId| from the simulated central.

Implementation

Future<void> removeService(String serviceId) async {
  await _client.send('BluetoothEmulation.removeService', {
    'serviceId': serviceId,
  });
}