isDark property
bool
get
isDark
Check if the current theme is dark.
Implementation
bool get isDark {
final theme = currentTheme;
if (theme == null) return false;
return theme.type == NyThemeType.dark;
}