readList<T> method
Fetches json response and returns the decoded result
Implementation
Future<List<T>?> readList<T>(
{T convert(Map d)?,
Map<String, dynamic> pathParams = const {},
FutureOr<dynamic> onError(ht.Response resp)?}) async {
ht.Response resp = await go(pathParams: pathParams);
if (resp.isSuccess) {
return resp.jsonList<T>(convert);
}
if (onError == null) {
throw ErrorResponse(resp);
}
var err = await onError(resp);
if (err != null) {
throw err;
}
return null;
}