iterateAllMainRowGroup property

  1. @override
Iterable<PlutoRow> iterateAllMainRowGroup
inherited

Regardless of filtering or pagination applied,

Returns the all rows with the highest depth.

The depth is determined by PlutoRow.parent. If PlutoRow.parent does not exist, the depth is the top level, and it continues to explore this property to determine the depth of the depth.

Implementation

@override
Iterable<PlutoRow> get iterateAllMainRowGroup sync* {
  for (final row in refRows.originalList.where(isMainRow)) {
    yield row;
  }
}