Need to get list of HID Devices (External devices like USB pen drive / Hard disks) with info in Flutter window desktop app.
Already tried below plugins but still not getting list of connected external devices.
https://pub.dev/packages/quick_usb
Need to get list of HID Devices (External devices like USB pen drive / Hard disks) with info in Flutter window desktop app.
Already tried below plugins but still not getting list of connected external devices.
https://pub.dev/packages/quick_usb
You can use the manual way. Just run a terminal command to get all of it.
import 'dart:io';
somefunction() async {
await Process.run("ioreg -p IOUSB"}).then((result) {
print(result);
});
}