debug, store user info

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2023-06-22 00:54:00 +08:00
parent 54cc45dd66
commit 4f50e3d934
2 changed files with 5 additions and 3 deletions

View File

@@ -123,7 +123,6 @@ class LoginResponse {
LoginResponse.fromJson(Map<String, dynamic> json) {
access_token = json['access_token'];
type = json['type'];
print('REMOVE ME ================== $json');
user = json['user'] != null ? UserPayload.fromJson(json['user']) : null;
}
}