SellerAddressDto constructor

SellerAddressDto(
  1. {String? street,
  2. String? postalCode,
  3. String? city,
  4. String? countryCode}
)

Implementation

SellerAddressDto({
  this.street,
  this.postalCode,
  this.city,
  this.countryCode,
});