MephistoTextButton constructor

const MephistoTextButton({
  1. Key? key,
  2. required String text,
  3. required Function onClick,
  4. bool? isDisabled = false,
  5. bool? isBold = true,
  6. Color? textButtonColor = primaryColor,
  7. bool? inline = false,
  8. bool? showUnderline = false,
})

Implementation

const MephistoTextButton({
  super.key,
  required this.text,
  required this.onClick,
  this.isDisabled = false,
  this.isBold = true,
  this.textButtonColor = primaryColor,
  this.inline = false,
  this.showUnderline = false,
});