small function

TextStyle small({
  1. double fontSize = 10.0,
  2. dynamic bold = true,
})

Implementation

TextStyle small({double fontSize = 10.0, bold = true}) => GoogleFonts.notoSans(
    fontSize: fontSize,
    fontWeight: bold ? FontWeight.bold : FontWeight.normal,
    color: mainTextColor());