gpt4 book ai didi

flutter - 如何从列表中删除特定项目?

转载 作者:IT老高 更新时间:2023-10-28 12:42:24 28 4
gpt4 key购买 nike

如何删除 List<ReplyTile> 上的项目与 id = 001 .. ?

final List<ReplyTile> _replytile = <ReplyTile>[];

_replytile.add(
ReplyTile(
member_photo: 'photo',
member_id: '001',
date: '01-01-2018',
member_name: 'Denis',
id: '001',
text: 'hallo..'
)
);

最佳答案

removeWhere 允许这样做:

replytile.removeWhere((item) => item.id == '001')

另见 List Dartdoc

关于flutter - 如何从列表中删除特定项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52778601/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com