FriendInfo constructor

FriendInfo({
  1. String? ownerUserID,
  2. String? userID,
  3. String? nickname,
  4. String? faceURL,
  5. String? friendUserID,
  6. String? remark,
  7. String? ex,
  8. int? createTime,
  9. int? addSource,
  10. String? operatorUserID,
})

Implementation

FriendInfo({
  this.ownerUserID,
  this.userID,
  this.nickname,
  this.faceURL,
  this.friendUserID,
  this.remark,
  this.ex,
  this.createTime,
  this.addSource,
  this.operatorUserID,
});