getAvaibleDevices method

Future<List<int>> getAvaibleDevices()

Implementation

Future<List<int>> getAvaibleDevices() async {
  List<int> res;
  try {
    res = await WinGamepad.getAvaibleDevices;
    return res;
  } on Exception {
    return [];
  }
}