iterateAllRow property

  1. @override
Iterable<PlutoRow> iterateAllRow
inherited

Regardless of filtering or pagination applied,

Returns all rows where PlutoRow.type is not PlutoRowType.group.

Implementation

@override
Iterable<PlutoRow> get iterateAllRow sync* {
  for (final row in _iterateRow(iterateAllMainRowGroup)) {
    yield row;
  }
}