flutter where list code example
Example 1: length of array in flutter
fixedLengthList.length
Example 2: flutter count list
var comments = <Comment>[...];
var count = comments.where((c) => c.product_id == someProductId).toList().length;
fixedLengthList.length
var comments = <Comment>[...];
var count = comments.where((c) => c.product_id == someProductId).toList().length;