post method

Future<Response> post(
  1. String path, {
  2. Map<String, String>? headers,
  3. Object? body,
  4. Encoding? encoding,
})

Implementation

Future<Response> post(String path,
    {Map<String, String>? headers, Object? body, Encoding? encoding}) {
  return _inner.post(_getFullUrl(path),
      headers: headers, body: body, encoding: encoding);
}