getTableHeaderTextSize static method
double
getTableHeaderTextSize(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getTableHeaderTextSize(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.tableHeaderTextSize ??
style?.tableHeaderTextSize ??
getStyleByType(UpConfig.of(context).theme, colorType)
.tableHeaderTextSize ??
12;
}