setNotifiable static method

  1. @Deprecated("Use [subscribeNotifications] or [subscribeIndications] or [unsubscribe] instead")
Future<void> setNotifiable(
  1. String deviceId,
  2. String service,
  3. String characteristic,
  4. BleInputProperty bleInputProperty,
)

Implementation

@Deprecated(
    "Use [subscribeNotifications] or [subscribeIndications] or [unsubscribe] instead")
static Future<void> setNotifiable(
  String deviceId,
  String service,
  String characteristic,
  BleInputProperty bleInputProperty,
) async {
  return _sendBleInputPropertyCommand(
    deviceId,
    service,
    characteristic,
    bleInputProperty,
  );
}