textColor static method

Color textColor(
  1. bool isDark
)

Implementation

static Color textColor(bool isDark) => isDark
    ? ThemeConfig.config.lightBackgroundColor
    : ThemeConfig.config.darkBackgroundColor;