callAddAddress method
Invokes org.freedesktop.Avahi.EntryGroup.AddAddress()
Implementation
Future<void> callAddAddress(
int interface, int protocol, int flags, String name, String address,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
await callMethod(
'org.freedesktop.Avahi.EntryGroup',
'AddAddress',
[
DBusInt32(interface),
DBusInt32(protocol),
DBusUint32(flags),
DBusString(name),
DBusString(address)
],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
}