iterateRowGroup property

  1. @override
Iterable<PlutoRow> iterateRowGroup
inherited

With filtering or pagination applied,

Returns all rows where PlutoRow.type is set to PlutoRowType.group.

Implementation

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