We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c09ad0d commit be135a8Copy full SHA for be135a8
lib/view/pages/bluetooth/bluetooth_device_model.dart
@@ -63,6 +63,7 @@ class BluetoothDeviceModel extends SafeChangeNotifier {
63
late bool legacyPairing;
64
late bool wakeAllowed;
65
late int txPower;
66
+ late List<BlueZGattService> gattServices;
67
68
BluetoothDeviceModel(this._device) {
69
updateFromClient();
@@ -90,6 +91,7 @@ class BluetoothDeviceModel extends SafeChangeNotifier {
90
91
legacyPairing = _device.legacyPairing;
92
wakeAllowed = _device.wakeAllowed;
93
txPower = _device.txPower;
94
+ gattServices = _device.gattServices;
95
}
96
97
Future<void> connect() async {
0 commit comments