FilterCheckboxTitle constructor

const FilterCheckboxTitle({
  1. Key? key,
  2. required bool selected,
  3. required String title,
  4. required ValueChanged<bool?> onUpdate,
  5. CheckBoxTileThemeProps? checkBoxTileThemeProps,
})

Implementation

const FilterCheckboxTitle({
  Key? key,
  required this.selected,
  required this.title,
  required this.onUpdate,
  this.checkBoxTileThemeProps,
}) : super(key: key);