ScrollableTextMultiBtn constructor

const ScrollableTextMultiBtn({
  1. Key? key,
  2. String? title,
  3. bool isCenter = true,
  4. bool isClose = true,
  5. required String contentText,
  6. Color? textColor,
  7. double? textFontSize,
  8. String? submitText,
  9. String? secondaryButtonText,
  10. VoidCallback? onSubmitClick,
  11. Color? submitBgColor,
  12. VoidCallback? onSecondaryButtonClick,
  13. HyperLinkCallback? linksCallback,
  14. bool isShowOperateWidget = true,
  15. Color? linkColor,
})

Implementation

const ScrollableTextMultiBtn(
    {super.key,
    this.title,
    this.isCenter = true,
    this.isClose = true,
    required this.contentText,
    this.textColor,
    this.textFontSize,
    this.submitText,
    this.secondaryButtonText,
    this.onSubmitClick,
    this.submitBgColor,
    this.onSecondaryButtonClick,
    this.linksCallback,
    this.isShowOperateWidget = true,
    this.linkColor});