FUISelectionTile constructor

const FUISelectionTile({
  1. Key? key,
  2. required String title,
  3. required bool selected,
  4. required ValueChanged<bool> onChanged,
  5. String? subtitle,
  6. FUISelectionType type = FUISelectionType.checkbox,
  7. bool enabled = true,
})

Implementation

const FUISelectionTile({
  super.key,
  required this.title,
  required this.selected,
  required this.onChanged,
  this.subtitle,
  this.type = FUISelectionType.checkbox,
  this.enabled = true,
});