Excuse me, i want to ask about get the data in rapidapi. Previously I had succeeded in retrieving data from Rapidapi in a form like the image below, I retrieved the data in the default article
Example get the data in my previous project
`Map data = jsonDecode(response.body);
// ignore: no_leading_underscores_for_local_identifiers
List _temp = [];
for (var i in data['results']) {
_temp.add(i['defaultArticle']);
}
return Clothes.clothesFromSnapshot(_temp);`
and now I’m confused about retrieving the data I want to retrieve now because the form of the json is different. How to retrieve the data shows? Thank You
Json form that i want to get the data now (shows)
Farhan Ashari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.