RCKLinkStyleConfig constructor
RCKLinkStyleConfig({})
构造函数
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);