SubPois.fromJson constructor

SubPois.fromJson(
  1. 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;
}