PlexFormFieldSwitch constructor

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

Implementation

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