How to map and get data from List<Object> in Flutter
I'm using CarouselSlider package and the items I used is from a hardcoded data. I'd like to get data from mapping it from a List<Object>. Here is my object: final List<Object> imgListObject = [ {"image": "/imageAsset1", "text": 'Text 1'}, {"image":…