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