// 用户信息 class UserInfo { String? gender; String? name; String? location; num? id; String? avatar; String? email; String? url; UserInfo({this.id, this.name, this.gender, this.avatar, this.email, this.location, this.url}); }