darkTheme property
BaseThemeConfig?
get
darkTheme
Get the first dark theme from registered themes.
Implementation
BaseThemeConfig? get darkTheme {
try {
return _themes.firstWhere((theme) => theme.type == NyThemeType.dark);
} catch (_) {
return null;
}
}