patch static method
Creates a test context with a PATCH request.
Implementation
static Context patch(
String path, {
Object? body,
Map<String, String>? headers,
String remoteIp = '127.0.0.1',
}) {
return _create(
'PATCH',
path,
body: body,
headers: headers,
remoteIp: remoteIp,
);
}