CDKButtonSwitch constructor

const CDKButtonSwitch(
  1. {Key? key,
  2. required bool value,
  3. ValueChanged<bool>? onChanged,
  4. double size = 22.0}
)

Implementation

const CDKButtonSwitch({
  Key? key,
  required this.value,
  this.onChanged,
  this.size = 22.0,
}) : super(key: key);