User constructor

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

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.commercialChannel,
  this.designationId,
  this.partnerId,
  this.designationName,
});