如何在flutter中将List type _JsonMap转换为List type Map

a14dhokn  于 2023-05-08  发布在  Flutter
关注(0)|答案(1)|浏览(249)

当我调用我的API时,我得到以下结果:

我想知道是否有一种方法可以将结果转换为MAP类型列表。

gab6jxml

gab6jxml1#

List<_JsonMap> jsonMaps = [...]; // assume this is your list of _JsonMap objects
List<Map<String, dynamic>> maps = jsonMaps.cast<Map<String, dynamic>>().toList();

相关问题