rowsForSection method

List<CatalogRow> rowsForSection(
  1. CatalogQueueSection section
)

Implementation

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