body2 function

TextStyle body2()

The text style for a body two

Implementation

TextStyle body2() {
  return accessibility.accessFeatures.boldText == true
      ? GoogleFonts.getFont(fontChoice,
          fontSize: 15,
          fontWeight: FontWeight.w600,
          letterSpacing: 0.4,
          decoration: TextDecoration.none)
      : GoogleFonts.getFont(fontChoice,
          fontSize: 18,
          fontWeight: FontWeight.w300,
          letterSpacing: 0.4,
          decoration: TextDecoration.none);
}