XSwitch constructor
const
XSwitch({
- Key? key,
- required bool value,
- required ValueChanged onChanged,
- String title = '',
- double titleFontSize = 12,
- FontWeight titleFontWeight = FontWeight.normal,
Implementation
const XSwitch({
super.key,
required this.value,
required this.onChanged,
this.title = '',
this.titleFontSize = 12,
this.titleFontWeight = FontWeight.normal,
});