Profile constructor

Profile({
  1. String? partnerId,
  2. dynamic partnerTypeId,
  3. dynamic partnerType,
  4. dynamic partnerName,
  5. String? parentId,
  6. String? firstName,
  7. String? lastName,
  8. String? emailId,
  9. String? phone,
  10. String? alternatePhone,
  11. int? levelId,
  12. dynamic commercialChannelId,
  13. dynamic status,
  14. dynamic approvalAction,
  15. dynamic approvalStatus,
  16. dynamic approvalRemarks,
  17. String? language,
  18. dynamic preferredCustomerName,
  19. dynamic levelName,
  20. dynamic parentName,
  21. dynamic statusName,
  22. dynamic address,
  23. String? hierarchyId,
  24. dynamic reason,
  25. dynamic fields,
  26. ProfileGroup? profileGroup,
})

Implementation

Profile({
  this.partnerId,
  this.partnerTypeId,
  this.partnerType,
  this.partnerName,
  this.parentId,
  this.firstName,
  this.lastName,
  this.emailId,
  this.phone,
  this.alternatePhone,
  this.levelId,
  this.commercialChannelId,
  this.status,
  this.approvalAction,
  this.approvalStatus,
  this.approvalRemarks,
  this.language,
  this.preferredCustomerName,
  this.levelName,
  this.parentName,
  this.statusName,
  this.address,
  this.hierarchyId,
  this.reason,
  this.fields,
  this.profileGroup,
});