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