SellerDto constructor
- {String? name,
- String? taxNumber,
- required bool taxExemption,
- String? taxExemptionNote,
- required SellerAddressDto address}
Implementation
SellerDto({
this.name,
this.taxNumber,
required this.taxExemption,
this.taxExemptionNote,
required this.address,
});