RCKLinkStyleConfig constructor

RCKLinkStyleConfig({
  1. TextStyle? senderTextStyle,
  2. TextStyle? receiverTextStyle,
  3. bool showUnderline = true,
})

构造函数

Implementation

RCKLinkStyleConfig({
  TextStyle? senderTextStyle,
  TextStyle? receiverTextStyle,
  this.showUnderline = true,
})  : senderTextStyle = senderTextStyle ??
          TextStyle(
              color: RCKThemeProvider().themeColor.textInverse,
              fontSize: kBubbleTextFontSize),
      receiverTextStyle = receiverTextStyle ??
          TextStyle(
              color: RCKThemeProvider().themeColor.textPrimary,
              fontSize: kBubbleTextFontSize);