MephistoCheckBoxCardButton constructor

const MephistoCheckBoxCardButton({
  1. Key? key,
  2. required String text,
  3. required Function onClick,
  4. required bool isSelected,
  5. Color? buttonColor,
  6. bool? isPartial = false,
  7. bool? showBorders = true,
  8. bool? fillOnSelected = true,
  9. String? direction = 'ltr',
})

Implementation

const MephistoCheckBoxCardButton(
    {super.key,
    required this.text,
    required this.onClick,
    required this.isSelected,
    this.buttonColor,
    this.isPartial = false,
    this.showBorders = true,
    this.fillOnSelected = true,
    this.direction = 'ltr'});