遍历Dart地图的地图

时间:2019-08-15 09:36:26

标签: firebase flutter dart google-cloud-firestore

我目前在Firestore中有一个地图的地图,我想知道如何才能通过该地图的内部值?

这是我的结构: map: {1: {1.1: asdasd, 1.2: asdasd}, 2: {2.1: qweqwe, 2.2: qweqwe}}}

我尝试使用Map<String, Map<String, Map<String, String>>>,但这给了我type '_InternalLinkedHashMap<dynamic, dynamic>' is not a subtype of type 'Iterable<dynamic>'

有什么办法解决这个问题?

非常感谢您。

1 个答案:

答案 0 :(得分:0)

我仅使用Map<dynamic, dynamic>

就知道了