Profile constructor

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

Implementation

Profile(
    {this.partnerId,
    this.partnerTypeId,
    this.partnerType,
    this.partnerName,
    this.parentId,
    this.firstName,
    this.hierarchyId,
    this.reason,
    this.fullName,
    this.fields,
    this.profileGroup,
    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});