updateAuth method
更新Auth信息
Implementation
void updateAuth(String? auth) {
if (TextUtils.isNotEmpty(auth) && auth != getAuth()) {
this.auth = auth;
PrefUtils.setString(SPKey.keyStrAuthorization, auth);
rx.push(RxKey.freshHomeMsg, data: '');
}
}