theme property

ThemeMode get theme

Implementation

ThemeMode get theme {
  switch (_fontSizeController.themeMode.value) {
    case AppThemeMode.light:
      return ThemeMode.light;
    case AppThemeMode.dark:
      return ThemeMode.dark;
    case AppThemeMode.system:
      return ThemeMode.system;
  }
}