TextStyle 정의하기
TextStyle 재활용 할 수 있게 정의하기 class CustomTextStyle extends TextStyle { const CustomTextStyle({ required String fontFamily, required Color color, required double fontSize, required FontWeight fontWeight, int? height, Paint? foreground, }) : super( fontFamily: fontFamily, color: color, fontSize: fontSize, fontWeight: fontWeight, height: height == null ? null : height / fontSize, leadingDistribution: ..