getTextFontStyle static method
FontStyle?
getTextFontStyle(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static FontStyle? getTextFontStyle(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.textFontStyle ??
style?.textFontStyle ??
getStyleByType(UpConfig.of(context).theme, colorType).textFontStyle;
}