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