callGetAllDevices method

Future<List<DBusObjectPath>> callGetAllDevices({
  1. bool noAutoStart = false,
  2. bool allowInteractiveAuthorization = false,
})

Invokes org.freedesktop.NetworkManager.GetAllDevices()

Implementation

Future<List<DBusObjectPath>> callGetAllDevices({bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
  var result = await callMethod('org.freedesktop.NetworkManager', 'GetAllDevices', [], replySignature: DBusSignature('ao'), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
  return result.returnValues[0].asObjectPathArray().toList();
}