No matching function for call to 'WiFiClient::WiFiClient()'

I am using an Arduino MKR1000 with the desktop IDE and am having problems with the AnotherIFTTTWebhook.h file.
The code WiFiClient client; is not compiling because there is "no matching function for call to 'WiFiClient::WiFiClient()'".
This code hasn't given me troubles prior to today.
Why is this happening and how do I fix it?
Thanks in advance.

// The MIT License
//
// Copyright (c) 2015 Neil Webber
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

// ====================================================================
// ====================================================================
// An adapted version of IFTTT Trigger by Neil Webber
// Original: https://gist.github.com/outofmbufs/d6ced37b49a484c495f0
//
// Adaptation from: https://www.siytek.com
//
// How to use:
// 1. Place AnotherIFTTTWebhook.h in the same directory as your project
// 2. Add #include "AnotherIFTTTWebhook.h" to your main project file
// 3. Send webhook using function in main file:
//    send_webhook(EVENT, KEY, Value1, Value2, Value3);
// ====================================================================
// ====================================================================

WiFiClient client;


char *append_str(char *here, char *s) {
  while (*here++ = *s++)
    ;
  return here - 1;
}

char *append_ul(char *here, unsigned long u) {
  char buf[20];       // we "just know" this is big enough

  return append_str(here, ultoa(u, buf, 10));
}

void send_webhook(char *MakerIFTTT_Event, char *MakerIFTTT_Key, char *value1, char *value2, char *value3) {

  // connect to the Maker event server
  client.connect("maker.ifttt.com", 80);

  // construct the POST request
  char post_rqst[256];    // hand-calculated to be big enough

  char *p = post_rqst;
  p = append_str(p, "POST /trigger/");
  p = append_str(p, MakerIFTTT_Event);
  p = append_str(p, "/with/key/");
  p = append_str(p, MakerIFTTT_Key);
  p = append_str(p, " HTTP/1.1\r\n");
  p = append_str(p, "Host: maker.ifttt.com\r\n");
  p = append_str(p, "Content-Type: application/json\r\n");
  p = append_str(p, "Content-Length: ");

  // we need to remember where the content length will go, which is:
  char *content_length_here = p;

  // it's always two digits, so reserve space for them (the NN)
  p = append_str(p, "NN\r\n");

  // end of headers
  p = append_str(p, "\r\n");

  // construct the JSON; remember where we started so we will know len
  char *json_start = p;

  // As described - this example reports a pin, uptime, and "hello world"
  p = append_str(p, "{\"value1\":\"");
  p = append_str(p, value1);
  p = append_str(p, "\",\"value2\":\"");
  p = append_str(p, value2);
  p = append_str(p, "\",\"value3\":\"");
  p = append_str(p, value3);
  p = append_str(p, "\"}");

  // go back and fill in the JSON length
  // we just know this is at most 2 digits (and need to fill in both)
  int i = strlen(json_start);
  content_length_here[0] = '0' + (i / 10);
  content_length_here[1] = '0' + (i % 10);

  // finally we are ready to send the POST to the server!
  client.print(post_rqst);
  client.stop();

}

I can't imagine why you went to all the effort of posting the code in such an illegible fashion.

Use code tags, not quote.

Post the actual error message. All of it.

@orangeplayer

Other post/duplicate DELETED
Please do NOT cross post / duplicate as it wastes peoples time and efforts to have more than one post for a single topic.

Continued cross posting could result in a time out from the forum.

Could you also take a few moments to Learn How To Use The Forum.

Other general help and troubleshooting advice can be found here.
It will help you get the best out of the forum in the future.

Arduino: 1.8.13 (Mac OS X), Board: "Arduino MKR1000"

In file included from /Users/dportas/Documents/Arduino/libraries/WiFi101/src/WiFi101.h:35:0,
from /Users/dportas/Documents/Arduino/libraries/Arduino_ConnectionHandler/src/Arduino_ConnectionHandler.h:22,
from /Users/dportas/Documents/Arduino/libraries/ArduinoIoTCloud/src/ArduinoIoTCloud.h:27,
from sketch/thingProperties.h:3,
from /Users/dportas/Desktop/programming/Arduino/PlantSitter_nov07a 3/PlantSitter_clean/PlantSitter_clean/PlantSitter_clean.ino:20:
/Users/dportas/Documents/Arduino/libraries/WiFi101/src/WiFiClient.h:35:13: error: field 'client' has incomplete type 'WiFiClient'
WiFiClient client;
^~~~~~
/Users/dportas/Documents/Arduino/libraries/WiFi101/src/WiFiClient.h:31:7: note: definition of 'class WiFiClient' is not complete until the closing brace
class WiFiClient : public Client {
^~~~~~~~~~
exit status 1
Error compiling for board Arduino MKR1000.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

I don't see "no matching function for call to 'WiFiClient::WiFiClient()'" in the error messages.
What has changed?