OudsListItem constructor

const OudsListItem({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? image,
  5. String? text,
  6. Widget? icon,
  7. bool? value,
  8. dynamic onChangedSwitch(
    1. bool?
    )?,
  9. dynamic onChangedCheckBox(
    1. bool?
    )?,
  10. bool? divider,
  11. void onPressed()?,
})

Creates an ODS List selection.

Implementation

const OudsListItem({
  super.key,
  required this.title,
  this.subtitle,
  this.image,
  this.text,
  this.icon,
  this.value,
  this.onChangedSwitch,
  this.onChangedCheckBox,
  this.divider,
  this.onPressed,
});