storage_const.dart
479 Bytes
/// SharedPreferences keys.
abstract final class StorageConst {
static const String appEnvironmentPrefsName =
'double_feel_environment_config';
static const String appEnvironmentKey = 'environment';
static const String appSettingsPrefsName = 'app_settings';
static const String termsAgreedKey = 'terms_agreed';
static const String lastLoginMethodKey = 'last_login_method';
static const String appReviewPromptNextShowAtKey = 'app_review_prompt_next_show_at';
}