appendLine method
Implementation
RichTextUtil appendLine({double? size}) {
spans.add(
WidgetSpan(
child: Text(
"\r\n",
style: TextStyle(fontSize: size ?? 14),
)),
);
return this;
}
RichTextUtil appendLine({double? size}) {
spans.add(
WidgetSpan(
child: Text(
"\r\n",
style: TextStyle(fontSize: size ?? 14),
)),
);
return this;
}