bodySmall static method

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

Body small text style

Implementation

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