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