writeValue static method

Future<void> writeValue(
  1. String deviceId,
  2. String service,
  3. String characteristic,
  4. Uint8List value,
  5. BleOutputProperty bleOutputProperty,
)

Implementation

static Future<void> writeValue(String deviceId, String service, String characteristic, Uint8List value, BleOutputProperty bleOutputProperty) {
  return _platform.writeValue(deviceId, service, characteristic, value, bleOutputProperty);
}