I have a List<Comment> from all foods.
[
{
comment_id: '...'
food_id: '...'
comment: '...'
},
{
comment_id: '...'
food_id: '...'
comment: '...'
},
....
]
I want to know how to count the number of comments based on food_id in Flutter?
Any answer is very helpful.