Profile constructor

Profile({
  1. String? partnerId,
  2. int? partnerTypeId,
  3. String? partnerType,
  4. String? partnerName,
  5. String? parentId,
  6. String? firstName,
  7. String? lastName,
  8. String? emailId,
  9. String? phone,
  10. String? alternatePhone,
  11. int? levelId,
  12. String? commercialChannelId,
  13. int? status,
  14. int? approvalAction,
  15. int? approvalStatus,
  16. String? approvalRemarks,
  17. String? language,
  18. String? preferredCustomerName,
  19. String? levelName,
  20. String? parentName,
  21. String? statusName,
  22. ProfileAddress? address,
  23. String? hierarchyId,
  24. String? reason,
  25. List<ProfileField>? 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,
});