hero method

RichTextBuilder hero(
  1. String text
)

Implementation

RichTextBuilder hero(String text) {
  if (text.isNotNullOrBlank) {
    children.add(TextSpan(text: text, style: textTheme.headline4!.copyWith(fontWeight: FontWeight.normal)));
  }
  return this;
}