MephistoCheckButton constructor

const MephistoCheckButton({
  1. Key? key,
  2. String? text,
  3. required Function onClick,
  4. required bool isSelected,
  5. Color? buttonColor,
  6. bool? isPartial = false,
})

Implementation

const MephistoCheckButton({
  super.key,
  this.text,
  required this.onClick,
  required this.isSelected,
  this.buttonColor,
  this.isPartial = false,
});