LinkTextMarkdown constructor

const LinkTextMarkdown({
  1. Key? key,
  2. required String messageText,
  3. bool isUseQQPackage = false,
  4. bool isUseTencentCloudChatPackage = false,
  5. bool isUseTencentCloudChatPackageOldKeys = false,
  6. List<CustomEmojiFaceData> customEmojiStickerList = const [],
  7. bool? isEnableTextSelection,
  8. void onLinkTap(
    1. String
    )?,
  9. TextStyle? style,
})

Implementation

const LinkTextMarkdown(
    {Key? key,
    required this.messageText,
    this.isUseQQPackage = false,
    this.isUseTencentCloudChatPackage = false,
    this.isUseTencentCloudChatPackageOldKeys = false,
    this.customEmojiStickerList = const [],
    this.isEnableTextSelection,
    this.onLinkTap,
    this.style})
    : super(key: key);