User constructor
User({
- String? userId,
- dynamic title,
- String? firstName,
- String? middleName,
- String? lastName,
- String? fullName,
- dynamic firstNameNen,
- dynamic middleNameNen,
- dynamic lastNameNen,
- String? fullNameNen,
- dynamic userName,
- String? mobileNumber,
- String? emailId,
- String? positionId,
- int? levelId,
- dynamic levelName,
- dynamic commercialChannel,
- dynamic commercialChannelName,
- String? designationId,
- String? designationName,
- String? partnerId,
- 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,
});