rowsForSection method
Implementation
List<CatalogRow> rowsForSection(CatalogQueueSection section) {
final rows = _rows.where((row) => _sectionForRow(row) == section).toList();
_sortRows(rows);
return rows;
}
List<CatalogRow> rowsForSection(CatalogQueueSection section) {
final rows = _rows.where((row) => _sectionForRow(row) == section).toList();
_sortRows(rows);
return rows;
}