BoldTextStyle constructor
const
BoldTextStyle({
- required double fontSize,
- Color? color,
- double? height,
- TextOverflow? overflow,
- TextDecoration? decoration,
- double? letterSpacing,
- Color? decorationColor,
- TextBaseline? textBaseline,
Implementation
const BoldTextStyle({
required this.fontSize,
this.color,
this.height,
this.overflow,
this.decoration,
this.letterSpacing,
this.decorationColor,
this.textBaseline,
}) : super(
fontFamily: 'PingFang SC',
fontWeight: FontWeight.bold,
overflow: overflow,
decoration: decoration,
fontSize: fontSize,
letterSpacing: letterSpacing,
color: color,
height: height,
decorationColor: decorationColor,
textBaseline: textBaseline,
);