toMixedRichText method
Converts mixed markdown/WhatsApp-style text to RichText
Implementation
RichText toMixedRichText({
TextStyle? baseStyle,
TextStyle? boldStyle,
TextStyle? italicStyle,
TextStyle? underlineStyle,
TextStyle? strikethroughStyle,
TextStyle? codeStyle,
}) {
return DanUITextConverter.convertMixedStyleToRichText(
this,
baseStyle: baseStyle,
boldStyle: boldStyle,
italicStyle: italicStyle,
underlineStyle: underlineStyle,
strikethroughStyle: strikethroughStyle,
codeStyle: codeStyle,
);
}