appendLine method

RichTextUtil appendLine({
  1. double? size,
})

Implementation

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