setNotifiable method

  1. @override
Future<void> setNotifiable(
  1. String deviceId,
  2. String service,
  3. String characteristic,
  4. BleInputProperty bleInputProperty,
)
override

Implementation

@override
Future<void> setNotifiable(String deviceId, String service, String characteristic, BleInputProperty bleInputProperty) async {
  _method.invokeMethod('setNotifiable', {
    'deviceId': deviceId,
    'service': service,
    'characteristic': characteristic,
    'bleInputProperty': bleInputProperty.value,
  }).then((_) => _log('setNotifiable invokeMethod success'));
}