store_keys.dart 481 B

1234567891011121314151617
  1. ///存储key的关键字静态词典
  2. class StoreKeys {
  3. ///文本存储key
  4. static const STORE_TEXTDATA_GEN = "store_text_{0}_data";
  5. ///配置存储Key
  6. static const STORE_CONFIG_DATA = "store_config_data";
  7. ///本地化存储key
  8. static const String STORE_APP_LOCALE = "store_app_locale";
  9. ///User Token存储key
  10. static const String STORE_USER_TOKEN = "store_user_token";
  11. ///个人信息存储key
  12. static const String STORE_USER_PROFILE = "store_user_profile";
  13. }