getDevices method

Future<List<USBDevice>> getDevices()

Implementation

Future<List<USBDevice>> getDevices() async {
  final jsDevices = await _getDevices().toDart;
  return jsDevices.toDart;
}