callGetAPIVersion method
Invokes org.freedesktop.Avahi.Server.GetAPIVersion()
Implementation
Future<int> callGetAPIVersion(
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
var result = await callMethod(
'org.freedesktop.Avahi.Server', 'GetAPIVersion', [],
replySignature: DBusSignature('u'),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
return (result.returnValues[0] as DBusUint32).value;
}