h3black method

RichTextBuilder h3black(
  1. String text
)

Implementation

RichTextBuilder h3black(String text) {
  return applyChild(text,
      baseStyle: textTheme.headline3!.copyWith(
        fontWeight: FontWeight.w900,
        letterSpacing: 0.0,
      ));
}