text static method
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);