postWithOptions method

Future<Response> postWithOptions(
  1. dynamic url, {
  2. Map<String, String>? headers,
  3. dynamic body,
  4. List? options,
  5. Encoding? encoding,
})

Implementation

Future<http.Response> postWithOptions(url,
        {Map<String, String>? headers,
        body,
        List<dynamic>? options,
        Encoding? encoding}) =>
    _sendUnstreamedWithOptions('POST', url, headers, options, body, encoding);