ScrollableTextDialog constructor

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

Implementation

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