tickLabel static method

TextStyle tickLabel({
  1. Color color = const Color(0xFF888888),
  2. double fontSize = 10,
  3. FontWeight fontWeight = FontWeight.normal,
  4. String? fontFamily,
})

Creates a tick label style.

Implementation

static TextStyle tickLabel({
  Color color = const Color(0xFF888888),
  double fontSize = 10,
  FontWeight fontWeight = FontWeight.normal,
  String? fontFamily,
}) {
  return TextStyle(
    color: color,
    fontSize: fontSize,
    fontWeight: fontWeight,
    fontFamily: fontFamily,
  );
}