最佳答案
在向 Map 添加新对时,我发现了以下错误。
Variables must be declared using the keywords const, final, var, or a type name
Expected to find;
the name someMap is already defined
我执行了以下代码。
Map<String, int> someMap = {
"a": 1,
"b": 2,
};
someMap["c"] = 3;
我应该如何向 Map 添加一个新对?
我还想知道如何使用 Map.update
。