这是我的数据库示例sample of database
我需要获取这些数组并将其存储到列表中
这是我为这些数据创建的模型类
> class ContainerItems { String Title, time, daytime, iconName;
>
> ContainerItems({required this.Title,
> required this.iconName,
> required this.time,
> required this.daytime}); }
并请告诉我如何访问每个单独的项目.在这列表中
请帮帮我
1条答案
按热度按时间wvt8vs2t1#
首先,我使用模型类创建了一个工厂,以简化将数据库列表的
Map<String, dynamic>
元素建模为ContainerItems
的过程:然后,可以使用此方法从数据库中获取
List<ContainerItems>
结果: