MephistoCheckBoxIconCardButton constructor

const MephistoCheckBoxIconCardButton({
  1. Key? key,
  2. required String title,
  3. required Widget icon,
  4. required Function onClick,
  5. required bool isSelected,
  6. String? text,
  7. Color? buttonColor,
  8. Color? textColor,
  9. bool? isPartial = false,
  10. bool? showBorders = true,
  11. bool? fillOnSelected = true,
  12. bool? textOverflow = true,
  13. String? direction = 'ltr',
})

Implementation

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