callResolveAddress method
Invokes org.freedesktop.Avahi.Server.ResolveAddress()
Implementation
Future<List<DBusValue>> callResolveAddress(
    int interface, int protocol, String address, int flags,
    {bool noAutoStart = false,
    bool allowInteractiveAuthorization = false}) async {
  var result = await callMethod(
      'org.freedesktop.Avahi.Server',
      'ResolveAddress',
      [
        DBusInt32(interface),
        DBusInt32(protocol),
        DBusString(address),
        DBusUint32(flags)
      ],
      replySignature: DBusSignature('iiissu'),
      noAutoStart: noAutoStart,
      allowInteractiveAuthorization: allowInteractiveAuthorization);
  return result.returnValues;
}