Skip to content

Commit 63aa05a

Browse files
authored
Merge pull request #3 from MeshMapper/copilot/fix-web-bluetooth-type-error
Fix type mismatch in web Bluetooth service initialization
2 parents 9853a08 + 6944ac4 commit 63aa05a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/bluetooth/web_bluetooth.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import 'bluetooth_service.dart';
1212
class WebBluetoothService implements BluetoothService {
1313
final _connectionController = StreamController<ConnectionStatus>.broadcast();
1414
final _dataController = StreamController<Uint8List>.broadcast();
15-
final fwb.FlutterWebBluetooth _webBluetooth = fwb.FlutterWebBluetooth.instance;
15+
final fwb.FlutterWebBluetoothInterface _webBluetooth = fwb.FlutterWebBluetooth.instance;
1616

1717
ConnectionStatus _connectionStatus = ConnectionStatus.disconnected;
1818
DiscoveredDevice? _connectedDevice;

0 commit comments

Comments
 (0)