ScrollableTextMultiBtnDialog constructor

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

Implementation

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