icon property
IconData
get
icon
Implementation
IconData get icon {
switch (this) {
case AppThemeMode.light:
return Icons.light_mode_outlined;
case AppThemeMode.dark:
return Icons.dark_mode_outlined;
case AppThemeMode.system:
return Icons.brightness_auto_outlined;
}
}