GrxHeadlineTextStyle constructor
const
GrxHeadlineTextStyle({
- 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 GrxHeadlineTextStyle({
super.color,
super.decoration,
super.overflow,
final FontWeight? fontWeight,
}) : super(
fontSize: 18,
fontWeight: fontWeight ?? GrxFontWeights.semiBold,
);