Data constructor

Data({
  1. String? customerId,
  2. String? firstName,
  3. String? middleName,
  4. String? lastName,
  5. String? contactNumber,
  6. String? emailId,
  7. dynamic alternateContactNumber,
  8. String? status,
  9. String? addressLine1,
  10. String? addressLine2,
  11. String? addressLine3,
  12. String? postalCode,
  13. String? address,
  14. String? customerType,
  15. String? partnerId,
  16. int? partnerTypeId,
  17. String? partnerTypeName,
  18. String? partnerName,
  19. dynamic tin,
  20. String? createdById,
  21. String? createdByName,
  22. String? createdDate,
  23. dynamic updatedById,
  24. dynamic updatedByName,
  25. dynamic updateDate,
  26. dynamic erpAccountNumber,
  27. dynamic erpLocation,
  28. bool? anonymous,
})

Implementation

Data({
  this.customerId,
  this.firstName,
  this.middleName,
  this.lastName,
  this.contactNumber,
  this.emailId,
  this.alternateContactNumber,
  this.status,
  this.addressLine1,
  this.addressLine2,
  this.addressLine3,
  this.postalCode,
  this.address,
  this.customerType,
  this.partnerId,
  this.partnerTypeId,
  this.partnerTypeName,
  this.partnerName,
  this.tin,
  this.createdById,
  this.createdByName,
  this.createdDate,
  this.updatedById,
  this.updatedByName,
  this.updateDate,
  this.erpAccountNumber,
  this.erpLocation,
  this.anonymous,
});