caption static method

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

Caption text style

Implementation

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