BuyerDto constructor

BuyerDto(
  1. {String? customerNumber,
  2. String? name,
  3. String? taxNumber,
  4. BuyerAddressDto? address}
)

Implementation

BuyerDto({
  this.customerNumber,
  this.name,
  this.taxNumber,
  this.address,
});