callResolveService method
Invokes org.freedesktop.Avahi.Server2.ResolveService()
Implementation
Future<List<DBusValue>> callResolveService(int interface, int protocol,
String name, String type, String domain, int aprotocol, int flags,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
var result = await callMethod(
'org.freedesktop.Avahi.Server2',
'ResolveService',
[
DBusInt32(interface),
DBusInt32(protocol),
DBusString(name),
DBusString(type),
DBusString(domain),
DBusInt32(aprotocol),
DBusUint32(flags)
],
replySignature: DBusSignature('iissssisqaayu'),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
return result.returnValues;
}