User constructor

User({
  1. String? userId,
  2. dynamic title,
  3. String? firstName,
  4. String? middleName,
  5. String? lastName,
  6. String? fullName,
  7. dynamic firstNameNen,
  8. dynamic middleNameNen,
  9. dynamic lastNameNen,
  10. String? fullNameNen,
  11. dynamic userName,
  12. String? mobileNumber,
  13. String? emailId,
  14. String? positionId,
  15. int? levelId,
  16. dynamic levelName,
  17. dynamic commercialChannel,
  18. dynamic commercialChannelName,
  19. String? designationId,
  20. String? designationName,
  21. String? partnerId,
  22. dynamic partnerName,
})

Implementation

User({
  this.userId,
  this.title,
  this.firstName,
  this.middleName,
  this.lastName,
  this.fullName,
  this.firstNameNen,
  this.middleNameNen,
  this.lastNameNen,
  this.fullNameNen,
  this.userName,
  this.mobileNumber,
  this.emailId,
  this.positionId,
  this.levelId,
  this.levelName,
  this.commercialChannel,
  this.commercialChannelName,
  this.designationId,
  this.designationName,
  this.partnerId,
  this.partnerName,
});