Switcher constructor
const
Switcher({})
Implementation
const Switcher({
Key? key,
required this.onChanged,
this.open = false,
this.enable = true,
this.width = 45,
//
this.onColor = const Color(0xFF26B85C),
this.onChild,
this.offColor = const Color(0xFFCCCCCC),
this.offChild,
//
this.sliderColor,
this.sliderChild,
//
this.boxShadow,
}) : height = width * 0.5,
offset = width * 0.5 / 18,
childOffset = width * 0.5 / 5,
super(key: key);