1 min readJan 9, 2019
Hi Dhruvam,
I found one issue in your item_model.dart file. Change the below from type double to String:
String _vote_average;
_vote_average = result[‘vote_average’].toString();
String get vote_average => _vote_average;
The vote_average value sometime comes in int. So it will internally crash and won’t load the list.