bodyMedium static method

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

Body medium text style (default body text)

Implementation

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