patch method
Sends an HTTP PATCH request with the given headers to the given URL. Adds security headers to the request before sending.
Implementation
@override
Future<http.Response> patch(Uri url,
{Map<String, String>? headers,
Object? body,
Encoding? encoding}) async =>
await http.patch(
url,
headers: await newHeaders(headers),
body: body,
encoding: encoding,
);