/// 用户 - 配置信息 // 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'; /// 登录用户的Xtoken static const String STORAGE_X_TOKEN = 'APP:XTOKEN'; /// 用户输入过的手机号码 static const String STORAGE_USER_MOBILE = 'user_mobile'; }