DraftModeUISwitch constructor

const DraftModeUISwitch({
  1. Key? key,
  2. bool value = false,
  3. ValueChanged<bool>? onChanged,
})

Implementation

const DraftModeUISwitch({
  super.key,
  this.value = false,
  this.onChanged,
});