SellerAddressDto.fromJson constructor

SellerAddressDto.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}