isLightTheme method

bool isLightTheme()

Checks if the current theme is a clear theme. Returns true if light and false if dark, wiipo or custom.

Implementation

bool isLightTheme() {
  return _theme.themeType == ThemeType.light;
}