storage_const.dart 392 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';
}