SellerDetails constructor

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

Implementation

SellerDetails({
  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.customerTradeName,
});