SubPois constructor

SubPois({
  1. String? title,
  2. String? snippet,
  3. String? subTypeDes,
  4. String? typeCode,
  5. String? poiId,
  6. LatLonPoint? latLonPoint,
})

Implementation

SubPois({
    String? title,
    String? snippet,
    String? subTypeDes,
    String? typeCode,
    String? poiId,
    LatLonPoint? latLonPoint,}){
  _title = title;
  _snippet = snippet;
  _subTypeDes = subTypeDes;
  _typeCode = typeCode;
  _poiId = poiId;
  _latLonPoint = latLonPoint;
}