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