InquiryAddress.fromJson constructor

InquiryAddress.fromJson(
  1. dynamic json
)

Implementation

factory InquiryAddress.fromJson(dynamic json) {
  return InquiryAddress(
    street1: json["street1"] as String?,
    street2: json["street2"] as String?,
    city: json["city"] as String?,
    subdivision: json["subdivision"] as String?,
    subdivisionAbbr: json["subdivisionAbbr"] as String?,
    postalCode: json["postalCode"] as String?,
    countryCode: json["countryCode"] as String?,
  );
}