value property
ByteData?
get
value
Get the last value retrieved from the WebBluetoothRemoteGATTCharacteristic.
Will return null
if no value has been retrieved yet.
See:
Implementation
ByteData? get value {
if (_value == null || _value.isUndefinedOrNull) {
return null;
}
return _value!.toDart;
}