themeAware property

Color themeAware

Implementation

Color get themeAware => isDark
    ? (GetTheme.isDarkMode ? Colors.white : this)
    : (GetTheme.isDarkMode ? this : Colors.black);