bluez 0.7.8 bluez: ^0.7.8 copied to clipboard
Provides a client to connect to BlueZ - the Linux Bluetooth stack.
import 'package:bluez/bluez.dart';
void main() async {
var client = BlueZClient();
await client.connect();
for (var device in client.devices) {
print('Device ${device.address} ${device.alias}');
}
await client.close();
}