Returns all row counts, preserving their relative order.
List<int> get rowCounts => items .where((item) => item.rowCount != null) .map((item) => item.rowCount!) .toList(growable: false);