callGetAllDevices method
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();
}