Flutter Remove list item

后端 未结 3 1556
迷失自我
迷失自我 2021-02-05 02:03

I have a question in my flutter dart script, this my script:

List replytile = new List();

replytile.add(
    new ReplyTile(
          


        
3条回答
  •  一向
    一向 (楼主)
    2021-02-05 03:00

    removeWhere allows to do that:

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

    See also List Dartdoc

提交回复
热议问题