patch method

  1. @override
Future<Response> patch(
  1. Uri url, {
  2. Map<String, String>? headers,
  3. Object? body,
  4. Encoding? encoding,
})
override

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,
    );