org.bluez.GattCharacteristic1.AcquireNotify() allows you to get a file descriptor to receive value updates on. While we can successfully pass the file descriptor and convert it to a RandomAccessFile this is not usable because Dart doesn't provide a way to know when this is readable and it throws an exception when there is no data available.
org.bluez.GattCharacteristic1.AcquireNotify()
allows you to get a file descriptor to receive value updates on. While we can successfully pass the file descriptor and convert it to aRandomAccessFile
this is not usable because Dart doesn't provide a way to know when this is readable and it throws an exception when there is no data available.