PrefCheckbox constructor

const PrefCheckbox({
  1. Key? key,
  2. Widget? title,
  3. required String pref,
  4. Widget? subtitle,
  5. bool ignoreTileTap = false,
  6. ValueChanged<bool>? onChange,
  7. bool? disabled,
  8. bool reversed = false,
})

Create a PrefCheckbox Widget

Implementation

const PrefCheckbox({
  super.key,
  this.title,
  required this.pref,
  this.subtitle,
  this.ignoreTileTap = false,
  this.onChange,
  this.disabled,
  this.reversed = false,
});