text static method

TextRichTextBuilder text(
  1. String content
)

Creates a text rich text builder

Example:

final text = RichTextBuilder.text('Hello World')
  .bold()
  .color('blue')
  .toJson();

Implementation

static TextRichTextBuilder text(String content) =>
    TextRichTextBuilder(content);