BuyerDetails constructor

BuyerDetails({
  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. String? addressLine3,
  10. String? contactNumber,
  11. String? customerType,
  12. String? accountId,
  13. String? profileId,
  14. String? serviceId,
  15. String? customerTypeId,
  16. String? customerTypeValue,
  17. String? customerCategoryId,
  18. String? customerCategoryValue,
  19. String? customerSubCategoryId,
  20. String? customerSubCategoryValue,
  21. String? partnerId,
  22. String? status,
  23. String? customerCode,
  24. String? customerTin,
  25. String? customerTradeName,
})

Implementation

BuyerDetails({
  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,
});