call function

Future call(
  1. Uri url,
  2. String methodName,
  3. List params, {
  4. Map<String, String>? headers,
  5. Encoding encoding = utf8,
  6. HttpPost? httpPost,
})

Implementation

Future call(
  Uri url,
  String methodName,
  List params, {
  Map<String, String>? headers,
  Encoding encoding = utf8,
  xml_rpc.HttpPost? httpPost,
}) =>
    xml_rpc.call(
      url,
      methodName,
      params,
      headers: headers,
      encoding: encoding,
      httpPost: httpPost,
      encodeCodecs: _codecs,
      decodeCodecs: _codecs,
    );