patch method
Sends a PATCH request to the given path.
Implementation
Future<TestResponse> patch(
String path, {
Object? body,
Map<String, String>? headers,
ContentType? contentType,
}) =>
_request('PATCH', path,
body: body, headers: headers, contentType: contentType);