SortingItem constructor

SortingItem({
  1. required SortingType type,
  2. required bool isSelected,
})

Implementation

SortingItem({
  required this.type,
  required this.isSelected,
});