iterateRow property

  1. @override
Iterable<PlutoRow> iterateRow
inherited

With filtering or pagination applied,

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

Implementation

@override
Iterable<PlutoRow> get iterateRow sync* {
  for (final row in _iterateRow(iterateMainRowGroup, iterateAll: false)) {
    yield row;
  }
}