SellerDto constructor

SellerDto(
  1. {String? name,
  2. String? taxNumber,
  3. required bool taxExemption,
  4. String? taxExemptionNote,
  5. required SellerAddressDto address}
)

Implementation

SellerDto({
  this.name,
  this.taxNumber,
  required this.taxExemption,
  this.taxExemptionNote,
  required this.address,
});