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