ScrollableText constructor

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

Implementation

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