getTableFooterColor static method

Color getTableFooterColor(
  1. BuildContext context, {
  2. UpStyle? override,
  3. UpStyle? style,
  4. UpColorType? colorType,
})

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;
}