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