listDevices method
Returns a list of UsbDevices currently plugged in.
Implementation
static Future<List<UsbDevice>> listDevices() async {
List<dynamic> devices = await _channel.invokeMethod("listDevices");
return devices.map(UsbDevice.fromJSON).toList();
}