I have two questions: First of all how I can print the values of every key (example below). Second, how to pass/iterate it inside build to a custom widget?
I'm new to Dart and Flutter so any help will be appreciated.
var games = [
{
'sony': ['Bloodborne', 'Uncharted', 'GOW']
},
{
'Nintendo': ['Mario', 'Zelda', 'Metroid']
},
{
'Microsoft': ['Gears', 'Halo', 'Forza']
}
];