I have a question in my flutter dart script, this my script:
List replytile = new List(); replytile.add( new ReplyTile(
removeWhere allows to do that:
removeWhere
replytile.removeWhere((item) => item.id == '001')
See also List Dartdoc