PlexFormFieldCheckbox constructor

const PlexFormFieldCheckbox({
  1. Key? key,
  2. PlexFormFieldGeneric properties = const PlexFormFieldGeneric.empty(),
  3. bool? value = false,
  4. ValueChanged<bool?>? onChanged,
  5. bool tristate = false,
})

Implementation

const PlexFormFieldCheckbox({
  super.key,
  this.properties = const PlexFormFieldGeneric.empty(),
  this.value = false,
  this.onChanged,
  this.tristate = false,
});