CustomTextStyle constructor

const CustomTextStyle({
  1. Color color = BasfColors.copyTextGrey,
  2. double? fontSize,
  3. String? fontFamily,
  4. FontWeight? fontWeight,
  5. double? lineHeight,
  6. double? letterSpacing,
})

Custom text style used at BASF Themes

Implementation

const CustomTextStyle({
  Color super.color = BasfColors.copyTextGrey,
  super.fontSize,
  super.fontFamily,
  super.fontWeight,
  double? lineHeight,
  super.letterSpacing,
}) : super(height: lineHeight);