getInvertedSmallTextColor method

Color getInvertedSmallTextColor(
  1. BuildContext context
)

Implementation

Color getInvertedSmallTextColor(BuildContext context) {
  if (Theme.of(context).brightness == Brightness.light) {
    return smallTextDarkMode;
  }
  return smallText;
}