removeWhereInRow method
Remove items in row rowIndex that respect to a predicate
Implementation
void removeWhereInRow(int rowIndex, bool Function(int colIndex, T value) predicate) {
final rowMap = _rows[rowIndex];
if (rowMap == null) {
return;
}
rowMap.removeWhere(predicate);
}