button2 function

TextStyle button2()

The text style for a button two

Implementation

TextStyle button2() {
  return accessibility.accessFeatures.boldText == true
      ? GoogleFonts.getFont(fontChoice,
          fontSize: 12,
          fontWeight: FontWeight.w700,
          letterSpacing: 0.4,
          decoration: TextDecoration.none)
      : GoogleFonts.getFont(fontChoice,
          fontSize: 15,
          fontWeight: FontWeight.w400,
          letterSpacing: 1.0,
          decoration: TextDecoration.none);
}