trace<T> method

Future<Response<T>> trace<T>(
  1. String path, {
  2. Map<String, String>? header,
  3. dynamic query,
  4. dynamic body,
  5. String? contentType,
  6. Decoder<T>? decoder,
})

Implementation

Future<Response<T>> trace<T>(
  String path, {
  Map<String, String>? header,
  dynamic query,
  dynamic body,
  String? contentType,
  Decoder<T>? decoder,
}) async {
  return _httpBase(
    method: 'trace',
    url: path,
    header: header,
    query: query,
    body: body,
  );
}