patch method

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

Sends an HTTP PATCH request with the given headers and body to the given URL.

Implementation

@override
Future<http.Response> patch(Uri url,
        {Map<String, String>? headers,
        Object? body,
        Encoding? encoding}) async =>
    await http.patch(url, headers: headers, body: body, encoding: encoding);