post abstract method

Future<HttpResponse> post(
  1. String url,
  2. {Map<String, String>? headers,
  3. dynamic body}
)

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});