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