copyWith method

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

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,
);