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