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