heading3 function

TextStyle heading3()

The text style for a heading three

Implementation

TextStyle heading3() {
  return accessibility.accessFeatures.boldText == true
      ? GoogleFonts.getFont(fontChoice,
          fontSize: 17,
          fontWeight: FontWeight.w800,
          letterSpacing: 1.0,
          decoration: TextDecoration.none)
      : GoogleFonts.getFont(fontChoice,
          fontSize: 20,
          fontWeight: FontWeight.w500,
          letterSpacing: 1.0,
          decoration: TextDecoration.none);
}