SubPois.fromJson constructor
SubPois.fromJson(
- dynamic json
Implementation
SubPois.fromJson(dynamic json) {
_title = json['title'];
_snippet = json['snippet'];
_subTypeDes = json['subTypeDes'];
_typeCode = json['typeCode'];
_poiId = json['poiId'];
_latLonPoint = json['latLonPoint'] != null ? LatLonPoint.fromJson(json['latLonPoint']) : null;
}