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