DeptMemberInfo constructor

DeptMemberInfo({
  1. String? userID,
  2. String? nickname,
  3. String? englishName,
  4. String? faceURL,
  5. int? gender,
  6. String? mobile,
  7. String? telephone,
  8. int? birth,
  9. String? email,
  10. String? departmentID,
  11. int? order,
  12. String? position,
  13. int? leader,
  14. int? status,
  15. int? createTime,
  16. String? ex,
  17. String? attachedInfo,
  18. String? departmentName,
  19. List<DeptInfo>? parentDepartmentList,
  20. DeptInfo? department,
})

Implementation

DeptMemberInfo({
  this.userID,
  this.nickname,
  this.englishName,
  this.faceURL,
  this.gender,
  this.mobile,
  this.telephone,
  this.birth,
  this.email,
  this.departmentID,
  this.order,
  this.position,
  this.leader,
  this.status,
  this.createTime,
  this.ex,
  this.attachedInfo,
  this.departmentName,
  this.parentDepartmentList,
  this.department,
});