post abstract method
Sends a POST request to the specified url.
Optionally, you can specify custom headers and a request body.
Returns a Future that completes with an HttpResponse when the request is complete.
Implementation
Future<HttpResponse> post(String url,
{Map<String, String>? headers, dynamic body});