In Flutter how do I display a list of nested arrays?
I'm using Flutter to display a JSON file which contains a list of nested arrays like so: "menu" : [ { "id" : "array_1", "name": "MENU", "menu_type": "GREEN", "icon": "fa-bars", "submenu": [ { "id" : "array_2", "name": "Hello", "menu_type": "YELLOW",…