getTableFooterTextColor static method
Implementation
static Color getTableFooterTextColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.tableFooterTextColor ??
style?.tableFooterTextColor ??
getStyleByType(
(FlutterUpConfig.of(context)?.theme ??
UpConstants.kDefaultTheme),
colorType)
.tableFooterTextColor ??
Colors.white;
}