unsubscribe static method
Stop characteristic notifications/indication updates
Implementation
static Future<void> unsubscribe(
String deviceId,
String service,
String characteristic, {
Duration? timeout,
}) async {
return _sendBleInputPropertyCommand(
deviceId,
service,
characteristic,
BleInputProperty.disabled,
timeout: timeout,
);
}