safeGetDecoded<T> method
Future<OxyResult<T> >
safeGetDecoded<T>(
- String path, {
- QueryMap? query,
- HeadersInit? headers,
- RequestOptions? options,
- Decoder<
T> ? decoder,
Implementation
Future<OxyResult<T>> safeGetDecoded<T>(
String path, {
QueryMap? query,
HeadersInit? headers,
RequestOptions? options,
Decoder<T>? decoder,
}) {
return safeRequestDecoded<T>(
'GET',
path,
query: query,
headers: headers,
options: options,
decoder: decoder,
);
}