bodyLarge static method

TextStyle bodyLarge({
  1. FontWeight fontWeight = FontWeight.normal,
  2. Color? color,
  3. bool allowFontScaling = false,
})

Body large text style

Implementation

static TextStyle bodyLarge({
  FontWeight fontWeight = FontWeight.normal,
  Color? color,
  bool allowFontScaling = false,
}) {
  return style(
    fontSize: 16,
    fontWeight: fontWeight,
    color: color,
    height: 1.5,
    allowFontScaling: allowFontScaling,
  );
}