storage_const.dart
815 Bytes
/// SharedPreferences keys.
abstract final class StorageConst {
static const String appEnvironmentPrefsName =
'double_feel_environment_config';
static const String appEnvironmentKey = 'environment';
static const String appRegionKey = 'region';
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';
static const String appReviewPromptPendingKey = 'app_review_prompt_pending';
static const String homeMembershipOfferPromptDateKey =
'home_membership_offer_prompt_date';
static const String homeMembershipOfferPromptUserIdKey =
'home_membership_offer_prompt_user_id';
}