HubbleSwitch constructor

const HubbleSwitch({
  1. Key? key,
  2. required bool value,
  3. required ValueChanged<bool> onChanged,
  4. HubbleSwitchStyle? switchStyle,
})

Implementation

const HubbleSwitch(
    {Key? key,
    required this.value,
    required this.onChanged,
    this.switchStyle})
    : super(key: key);