To create a List of maps in dart you can use the <Map> generic type. Example: void main(){ List<Map> myList = <Map>[]; myList.add({ "key": "value" }) ...
確定! 回上一頁