OudsListSwitch constructor

const OudsListSwitch({
  1. Key? key,
  2. required String title,
  3. required bool value,
  4. required void onChanged(
    1. bool
    )?,
  5. bool? icon,
  6. bool? enabled = true,
})

Creates an OUDS Switch list.

Implementation

const OudsListSwitch({
  super.key,
  required this.title,
  required this.value,
  required this.onChanged,
  this.icon,
  this.enabled = true,
});