writeValue static method

  1. @Deprecated("Use [write] instead")
Future<void> writeValue(
  1. String deviceId,
  2. String service,
  3. String characteristic,
  4. Uint8List value,
  5. BleOutputProperty bleOutputProperty,
)

Implementation

@Deprecated("Use [write] instead")
static Future<void> writeValue(
  String deviceId,
  String service,
  String characteristic,
  Uint8List value,
  BleOutputProperty bleOutputProperty,
) async {
  await write(
    deviceId,
    service,
    characteristic,
    value,
    withoutResponse: bleOutputProperty == BleOutputProperty.withoutResponse,
  );
}