isDark method

bool isDark()

Returns true if theme is dark.

Implementation

bool isDark() {
  _theme = SBUPreferences().getDarkTheme() ? SBUTheme.dark : SBUTheme.light;
  return _theme == SBUTheme.dark;
}