config.dart 692 B

1234567891011121314151617181920
  1. class Config {
  2. static bool? DEBUG = true;
  3. static const PAGE_SIZE = 20;
  4. /// //////////////////////////////////////常量////////////////////////////////////// ///
  5. static const API_TOKEN = "4d65e2a5626103f92a71867d7b49fea0";
  6. static const TOKEN_KEY = "token";
  7. static const USER_NAME_KEY = "user-name";
  8. static const PW_KEY = "user-pw";
  9. static const USER_BASIC_CODE = "user-basic-code";
  10. static const USER_INFO = "user-info";
  11. static const LANGUAGE_SELECT = "language-select";
  12. static const LANGUAGE_SELECT_NAME = "language-select-name";
  13. static const REFRESH_LANGUAGE = "refreshLanguageApp";
  14. static const THEME_COLOR = "theme-color";
  15. static const LOCALE = "locale";
  16. }