PICheckboxButton constructor

const PICheckboxButton({
  1. Key? key,
  2. Widget? child,
  3. bool? checked,
  4. Function? onTap,
  5. double? width,
})

Implementation

const PICheckboxButton(
    {Key? key, this.child, this.checked, this.onTap, this.width})
    : super(key: key);