UserInfo constructor

UserInfo({
  1. PublicUserInfo? publicInfo,
  2. FriendInfo? friendInfo,
  3. BlacklistInfo? blackInfo,
  4. bool? isFriendship,
  5. bool? isBlacklist,
  6. String? userID,
  7. String? nickname,
  8. String? faceURL,
  9. String? phoneNumber,
  10. int? birth,
  11. String? birthTime,
  12. int? gender,
  13. String? email,
  14. String? ex,
  15. int? createTime,
  16. String? remark,
  17. int? globalRecvMsgOpt,
  18. int? allowAddFriend,
  19. int? allowBeep,
  20. int? allowVibration,
  21. int? forbidden,
})

Implementation

UserInfo({
  this.publicInfo,
  this.friendInfo,
  this.blackInfo,
  this.isFriendship,
  this.isBlacklist,
  //
  this.userID,
  this.nickname,
  this.faceURL,
  this.phoneNumber,
  this.birth,
  this.birthTime,
  this.gender,
  this.email,
  this.ex,
  this.createTime,
  this.remark,
  this.globalRecvMsgOpt,
  this.allowAddFriend,
  this.allowBeep,
  this.allowVibration,
  this.forbidden,
});