put method
Implementation
@override
Future put(Uri url,
{dynamic? body, Map<String, String>? headers, Duration? timeout}) {
return _request(url,
method: HttpMethods.PUT,
headers: headers,
body: body,
timeout: timeout);
}