patch method

Future<TestResponse> patch(
  1. String path, {
  2. Object? body,
  3. Map<String, String>? headers,
})

Sends a PATCH request.

Implementation

Future<TestResponse> patch(
  String path, {
  Object? body,
  Map<String, String>? headers,
}) => request('PATCH', path, body: body, headers: headers);