16 lines
369 B
Dart
16 lines
369 B
Dart
/// 用户 - 配置信息
|
|
|
|
// ignore_for_file: constant_identifier_names
|
|
class AppStorageKey {
|
|
/// 登录用户的基本信息
|
|
static const String STORAGE_USER_INFO = 'user_info';
|
|
|
|
/// 登录用户的token
|
|
static const String STORAGE_USER_TOKEN = 'APP:TOKEN';
|
|
|
|
/// 用户输入过的手机号码
|
|
static const String STORAGE_USER_MOBILE = 'user_mobile';
|
|
|
|
|
|
}
|