toTextSpan property

TextSpan get toTextSpan

Implementation

TextSpan get toTextSpan {
  return TextSpan(
    text: data,
    style: style ??
        TextStyle(
          fontSize: fontSize ?? 14,
          color: color ?? const Color(0xFF333333),
          fontWeight: isBold ? FontWeight.bold : FontWeight.normal,
        ),
    children: textSpan != null ? <InlineSpan>[textSpan!] : null,
  );
}