getDecoded<T> method

Future<T> getDecoded<T>(
  1. String path, {
  2. QueryMap? query,
  3. HeadersInit? headers,
  4. RequestOptions? options,
  5. Decoder<T>? decoder,
})

Implementation

Future<T> getDecoded<T>(
  String path, {
  QueryMap? query,
  HeadersInit? headers,
  RequestOptions? options,
  Decoder<T>? decoder,
}) {
  return requestDecoded<T>(
    'GET',
    path,
    query: query,
    headers: headers,
    options: options,
    decoder: decoder,
  );
}