callGetAlternativeServiceName method
Invokes org.freedesktop.Avahi.Server.GetAlternativeServiceName()
Implementation
Future<String> callGetAlternativeServiceName(String name,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
var result = await callMethod('org.freedesktop.Avahi.Server',
'GetAlternativeServiceName', [DBusString(name)],
replySignature: DBusSignature('s'),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
return (result.returnValues[0] as DBusString).value;
}