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. int? gender,
  12. String? email,
  13. String? ex,
  14. int? createTime,
  15. String? remark,
  16. int? globalRecvMsgOpt,
})

Implementation

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