getAllDevices method

Future<List<DBusObjectPath>> getAllDevices()

Gets org.freedesktop.NetworkManager.AllDevices

Implementation

Future<List<DBusObjectPath>> getAllDevices() async {
  var value = await getProperty('org.freedesktop.NetworkManager', 'AllDevices', signature: DBusSignature('ao'));
  return value.asObjectPathArray().toList();
}