LinkText constructor

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

Implementation

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