caption static method

TextStyle caption({
  1. Color color = fontColor,
  2. FontWeight fontWeight = FontWeight.w400,
  3. bool underline = false,
  4. double? height,
})

Implementation

static TextStyle caption({
  Color color = fontColor,
  FontWeight fontWeight = FontWeight.w400,
  bool underline = false,
  double? height,
}) => TextStyle(
  color: color,
  fontFamily: fontFamily,
  fontWeight: fontWeight,
  fontSize: 12.0,
  height: height,
  decoration: underline ? TextDecoration.underline : null
);