rowCounts property

List<int> get rowCounts

Returns all row counts, preserving their relative order.

Implementation

List<int> get rowCounts => items
    .where((item) => item.rowCount != null)
    .map((item) => item.rowCount!)
    .toList(growable: false);