put method
Implementation
Future<HttpClientResponse> put(
String path, {
Object? body,
Map<String, String>? headers,
bool requiresAuth = false,
int? timeoutMs,
}) => send(
method: 'PUT',
path: path,
body: body,
headers: headers,
requiresAuth: requiresAuth,
timeoutMs: timeoutMs,
);