CDKButtonCheckBox constructor

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

Implementation

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