1234567891011121314151617 |
- ///存储key的关键字静态词典
- class StoreKeys {
- ///文本存储key
- static const STORE_TEXTDATA_GEN = "store_text_{0}_data";
- ///配置存储Key
- static const STORE_CONFIG_DATA = "store_config_data";
- ///本地化存储key
- static const String STORE_APP_LOCALE = "store_app_locale";
- ///User Token存储key
- static const String STORE_USER_TOKEN = "store_user_token";
- ///个人信息存储key
- static const String STORE_USER_PROFILE = "store_user_profile";
- }
|