FUISelectionTile constructor
const
FUISelectionTile({
- Key? key,
- required String title,
- required bool selected,
- required ValueChanged<
bool> onChanged, - String? subtitle,
- FUISelectionType type = FUISelectionType.checkbox,
- 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,
});