import 'package:immich_mobile/domain/models/store.model.dart'; enum Setting { advancedTroubleshooting(StoreKey.advancedTroubleshooting, false); const Setting(this.storeKey, this.defaultValue); final StoreKey storeKey; final T defaultValue; }