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