displayLargeAndBold static method

TextStyle displayLargeAndBold(
  1. BuildContext context,
  2. Color color
)

Implementation

static TextStyle displayLargeAndBold(BuildContext context, Color color) {
  return GoogleFonts.workSans(
      fontSize: 25, fontWeight: FontWeight.bold, color: color);
}