SellerAddressDto.fromJson constructor
Implementation
factory SellerAddressDto.fromJson(Map<String, dynamic> json) {
return SellerAddressDto(
street: json["street"] as String?,
postalCode: json["postalCode"] as String?,
city: json["city"] as String?,
countryCode: json["countryCode"] as String?,
);
}