warning function

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

Implementation

TextStyle warning({bold = true}) => GoogleFonts.notoSans(
    fontSize: 15.0,
    fontWeight: bold ? FontWeight.bold : FontWeight.normal,
    color: Colors.red.shade400);