getTableHeaderColor static method
Color
getTableHeaderColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getTableHeaderColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.tableHeaderColor ??
style?.tableHeaderColor ??
getStyleByType(UpConfig.of(context).theme, colorType)
.tableHeaderColor ??
style?.foregroundColor ??
Theme.of(context).primaryColor;
}