FeraSwitch constructor

const FeraSwitch({
  1. Key? key,
  2. bool isEnabled = true,
  3. required bool value,
  4. required ValueChanged<bool> onChanged,
})

Implementation

const FeraSwitch(
    {super.key,
    this.isEnabled = true,
    required this.value,
    required this.onChanged});