标签: flutter dart collections
如果我运行这段代码
print(CombinedMapView([{'a': 1}, {'a': 2}]));
在Dart中它会按预期打印
{a: 1}
但是在Flutter中它会打印
{a: 1, a: 1}
是否有错误或我错过了什么?