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