overline static method

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

Overline text style

Implementation

static TextStyle overline({
  FontWeight fontWeight = FontWeight.w500,
  Color? color,
  bool allowFontScaling = false,
}) {
  return style(
    fontSize: 10,
    fontWeight: fontWeight,
    color: color,
    letterSpacing: 1.5,
    allowFontScaling: allowFontScaling,
  );
}