ButtonBoldTextStyle constructor

ButtonBoldTextStyle({
  1. required double fontSize,
})

Implementation

ButtonBoldTextStyle({
  required this.fontSize,
  // this.color,
}) : super(
        fontFamily: 'PingFang SC',
        fontSize: fontSize,
        fontWeight: FontWeight.bold,
        // color: color,
      );