h2 function

TextStyle h2({
  1. dynamic bold = true,
})

Implementation

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