GrxOverlineTextStyle constructor

const GrxOverlineTextStyle({
  1. Color? color,
  2. TextDecoration? decoration,
  3. TextOverflow? overflow = TextOverflow.ellipsis,
  4. 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,
      );