Profile constructor

Profile({
  1. String? entityId,
  2. String? parentId,
  3. String? firstName,
  4. String? lastName,
  5. String? emailId,
  6. String? mobileNumber,
  7. String? customerNumber,
  8. int? levelId,
  9. String? levelName,
  10. String? commercialChannelId,
  11. String? commercialChannelName,
  12. String? customerCode,
  13. List<Fields>? fields,
  14. ProfileGroup? profileGroup,
  15. String? displayName,
  16. bool? salesForce,
  17. String? status,
  18. Address? address,
  19. int? partnerType,
  20. String? partnerName,
})

Implementation

Profile(
    {this.entityId,
    this.parentId,
    this.firstName,
    this.lastName,
    this.emailId,
    this.mobileNumber,
    this.customerNumber,
    this.levelId,
    this.levelName,
    this.commercialChannelId,
    this.commercialChannelName,
    this.customerCode,
    this.fields,
    this.profileGroup,
    this.displayName,
    this.salesForce,
    this.status,
    this.address,
    this.partnerType,
    this.partnerName});