File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ class Characteristic extends InternalCharacteristic {
36
36
37
37
/// True if this characteristic can be monitored via notifications.
38
38
bool isNotifiable;
39
+
39
40
/// True if this characteristic can be monitored via indications.
40
41
bool isIndicatable;
41
42
@@ -70,14 +71,14 @@ class Characteristic extends InternalCharacteristic {
70
71
/// [isWritableWithoutResponse] is `true` and argument [withResponse] is
71
72
/// set accordingly.
72
73
Future <void > write (
73
- Uint8List bytes ,
74
+ Uint8List value ,
74
75
bool withResponse, {
75
76
String transactionId,
76
77
}) =>
77
78
_manager.writeCharacteristicForIdentifier (
78
79
service.peripheral,
79
80
this ,
80
- bytes ,
81
+ value ,
81
82
withResponse,
82
83
transactionId ?? TransactionIdGenerator .getNextId (),
83
84
);
You can’t perform that action at this time.
0 commit comments