isLightTheme method

bool isLightTheme()

Implementation

bool isLightTheme() {
  if (_themeValue == "automatic") {
    return window.platformBrightness == Brightness.light;
  } else if (_themeValue == "light") {
    return true;
  } else {
    return false;
  }
}