writeValue static method
- @Deprecated("Use [write] instead")
- String deviceId,
- String service,
- String characteristic,
- Uint8List value,
- 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,
);
}