SwitchSettingItem constructor

const SwitchSettingItem({
  1. Key? key,
  2. bool showBoardSide = true,
  3. required bool defaultValue,
  4. required String title,
  5. required dynamic onChanged(
    1. bool
    ),
})

Implementation

const SwitchSettingItem({
  super.key,
  this.showBoardSide = true,
  required this.defaultValue,
  required this.title,
  required this.onChanged,
});