Mapping a List

Learn how you can map lists in Flutter.

We'll cover the following...

Mapping lists in Flutter

Inside our main function, we have a combination of list and map, in this way:

Press + to interact
var _questions = [
{
'questionText': 'What\'s the meaning of Assuetude?',
'answers': ['kiss', 'insolent', 'habit', 'half'],
},
{
'questionText': 'What\'s the meaning of Disingenuous?',
'answers': ['guilty', 'jovial', 'jocular', 'insincere'],
},
{
'questionText': 'What\'s the meaning of Afflatus?',
'answers': ['ghost', 'inspiration', 'lifeless', 'greedy'],
},
];

The great advantage of our ...