body1 function

TextStyle body1()

The text style for a body one

Implementation

TextStyle body1() {
  return accessibility.accessFeatures.boldText == true
      ? GoogleFonts.getFont(fontChoice,
          fontSize: 14,
          fontWeight: FontWeight.w500,
          letterSpacing: 0.4,
          decoration: TextDecoration.none)
      : GoogleFonts.getFont(fontChoice,
          fontSize: 17,
          fontWeight: FontWeight.w200,
          letterSpacing: 0.4,
          decoration: TextDecoration.none);
}