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