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