CustomerDetails constructor

CustomerDetails({
  1. int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? name,
  5. String? email,
  6. String? address,
  7. String? addressLine1,
  8. String? addressLine2,
  9. dynamic addressLine3,
  10. String? contactNumber,
  11. dynamic customerType,
  12. dynamic accountId,
  13. dynamic profileId,
  14. dynamic serviceId,
  15. String? customerTypeId,
  16. String? customerTypeValue,
  17. dynamic customerCategoryId,
  18. dynamic customerCategoryValue,
  19. dynamic customerSubCategoryId,
  20. dynamic customerSubCategoryValue,
  21. String? partnerId,
  22. String? status,
  23. String? customerCode,
  24. dynamic customerTin,
  25. String? displayName,
})

Implementation

CustomerDetails({
    this.id,
    this.firstName,
    this.lastName,
    this.name,
    this.email,
    this.address,
    this.addressLine1,
    this.addressLine2,
    this.addressLine3,
    this.contactNumber,
    this.customerType,
    this.accountId,
    this.profileId,
    this.serviceId,
    this.customerTypeId,
    this.customerTypeValue,
    this.customerCategoryId,
    this.customerCategoryValue,
    this.customerSubCategoryId,
    this.customerSubCategoryValue,
    this.partnerId,
    this.status,
    this.customerCode,
    this.customerTin,
    this.displayName,
});