GrxOverlineTextStyle constructor
const
GrxOverlineTextStyle({
- Color? color,
- TextDecoration? decoration,
- TextOverflow? overflow = TextOverflow.ellipsis,
- FontWeight? fontWeight,
Creates a Design System's TextStyle with pre-defined font size and font weight
Implementation
const GrxOverlineTextStyle({
super.color,
super.decoration,
super.overflow,
final FontWeight? fontWeight,
}) : super(
fontSize: 9,
fontWeight: fontWeight ?? GrxFontWeights.regular,
);