StreetNumber.fromJson constructor
Implementation
StreetNumber.fromJson(Map<String, dynamic> json) {
direction = json['direction'];
distance = json['distance'];
latLonPoint = json['latLonPoint'] != null ? LatLng.fromJson(json['latLonPoint']) : null;
number = json['number'];
street = json['street'];
}