put method
Sends an HTTP PUT request with the given headers and body to the given URL.
Implementation
@override
Future<http.Response> put(Uri url,
{Map<String, String>? headers,
Object? body,
Encoding? encoding}) async =>
await http.put(url, headers: headers, body: body, encoding: encoding);