tag2 function

TextStyle tag2()

The text style for a tag two

Implementation

TextStyle tag2() {
  return accessibility.accessFeatures.boldText == true
      ? GoogleFonts.getFont(fontChoice,
          fontSize: 10,
          fontWeight: FontWeight.w600,
          letterSpacing: 0.4,
          decoration: TextDecoration.none)
      : GoogleFonts.getFont(fontChoice,
          fontSize: 13,
          fontWeight: FontWeight.w400,
          letterSpacing: 1.0,
          decoration: TextDecoration.none);
}