textOverline function

TextStyle textOverline({
  1. Color? color,
})

Implementation

TextStyle textOverline({Color? color}) {
  return TextStyle(
    fontSize: 12,
    fontWeight: FontWeight.w700,
    wordSpacing: 1.2,
    color: color ?? Colors.black,
    fontFamily: Strings.fontFamily,
  );
}