patch method
Implementation
Future<FittorResponse> patch(String url,
{dynamic body,
Map<String, String>? headers,
Map<String, String>? queryParameters}) {
return send(FittorRequest(
url: url,
method: HttpMethod.patch,
body: body,
headers: headers != null ? FittorHeaders(headers) : null,
queryParameters: queryParameters,
));
}