MotionLiquidToggle constructor

const MotionLiquidToggle({
  1. Key? key,
  2. bool initialValue = false,
  3. ValueChanged<bool>? onChanged,
  4. Color? activeColor,
})

Implementation

const MotionLiquidToggle({
  super.key,
  this.initialValue = false,
  this.onChanged,
  this.activeColor,
});