SortControls constructor

const SortControls({
  1. Key? key,
  2. required MovieSortCriteria selectedCriteria,
  3. required ValueChanged<MovieSortCriteria> onSortChanged,
})

Creates a new SortControls widget.

Implementation

const SortControls({
  super.key,
  required this.selectedCriteria,
  required this.onSortChanged,
});