removeDescriptor method

Future<void> removeDescriptor(
  1. String descriptorId
)

Removes the descriptor with |descriptorId| from the simulated central.

Implementation

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