iterateAllRowGroup property

  1. @override
Iterable<PlutoRow> iterateAllRowGroup
inherited

Regardless of filtering or pagination applied,

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

Implementation

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