isCustomTheme method

bool isCustomTheme()

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

Implementation

bool isCustomTheme() {
  return _theme.themeType == ThemeType.custom;
}