body function

TextStyle body({
  1. double fontSize = 20.0,
  2. dynamic bold = true,
})

Implementation

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