systemDevices property

Future<List<BluetoothDevice>> systemDevices

Implementation

static Future<List<BluetoothDevice>> get systemDevices async {
  if (Platform.isWindows) return FlutterBluePlusWindows.connectedDevices;
  return await Mobile.FlutterBluePlus.systemDevices;
}