callServiceResolverNew method
Invokes org.freedesktop.Avahi.Server.ServiceResolverNew()
Implementation
Future<String> callServiceResolverNew(
{required int interface,
required int protocol,
required String name,
required String type,
required String domain,
required int aprotocol,
required int flags,
bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
var result = await callMethod(
'org.freedesktop.Avahi.Server',
'ServiceResolverNew',
[
DBusInt32(interface),
DBusInt32(protocol),
DBusString(name),
DBusString(type),
DBusString(domain),
DBusInt32(aprotocol),
DBusUint32(flags)
],
replySignature: DBusSignature('o'),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
return (result.returnValues[0] as DBusObjectPath).value;
}