user_info.dart 250 B

123456789101112131415
  1. // 用户信息
  2. class UserInfo {
  3. String? gender;
  4. String? name;
  5. String? location;
  6. num? id;
  7. String? avatar;
  8. String? email;
  9. String? url;
  10. UserInfo({this.id, this.name, this.gender, this.avatar, this.email, this.location, this.url});
  11. }