heroBold method

RichTextBuilder heroBold(
  1. String text
)

Implementation

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