getTableFooterTextColor static method

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

Implementation

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