callUpdateServiceTxt method
Invokes org.freedesktop.Avahi.EntryGroup.UpdateServiceTxt()
Implementation
Future<void> callUpdateServiceTxt(int interface, int protocol, int flags,
String name, String type, String domain, List<List<int>> txt,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
await callMethod(
'org.freedesktop.Avahi.EntryGroup',
'UpdateServiceTxt',
[
DBusInt32(interface),
DBusInt32(protocol),
DBusUint32(flags),
DBusString(name),
DBusString(type),
DBusString(domain),
DBusArray(
DBusSignature('ay'), txt.map((child) => DBusArray.byte(child)))
],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
}