getDecoded<T> method
Future<T>
getDecoded<T>(
- String path, {
- QueryMap? query,
- HeadersInit? headers,
- RequestOptions? options,
- 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,
);
}