ExerciseFilter constructor

const ExerciseFilter({
  1. Key? key,
  2. required String heading,
  3. String? category,
  4. bool showOnlyFavorites = false,
})

Implementation

const ExerciseFilter({
  super.key,
  required this.heading,
  this.category,
  this.showOnlyFavorites = false,
});