themeIcon property
RCKThemeIcon
get
themeIcon
Implementation
RCKThemeIcon get themeIcon {
if (_currentTheme == RCIMIWAppTheme.custom && _customIcon != null) {
return _customIcon!;
}
switch (_currentTheme) {
case RCIMIWAppTheme.dark:
return RCKThemeIcon.dark;
case RCIMIWAppTheme.light:
return RCKThemeIcon.light;
default:
return RCKThemeIcon.light;
}
}