removeCharacteristic method

Future<void> removeCharacteristic(
  1. String characteristicId
)

Removes the characteristic respresented by |characteristicId| from the simulated central.

Implementation

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