h4black method

RichTextBuilder h4black(
  1. String text
)

Implementation

RichTextBuilder h4black(String text) {
  return applyChild(text,
      baseStyle: textTheme.headline4!.copyWith(
        fontWeight: FontWeight.w900,
      ));
}