PlacemarkModel constructor

PlacemarkModel({
  1. String? description,
  2. String? icon,
  3. String balloonContent = '',
  4. bool visibility = true,
  5. bool viewOrbit = true,
  6. double scale = 2.5,
  7. LookAtModel? lookAt,
  8. TourModel? tour,
  9. required String id,
  10. required String name,
  11. PointModel? point,
  12. LineModel? line,
  13. String? styleId,
  14. String? orbitContent,
})

Implementation

PlacemarkModel({
  this.description,
  this.icon,
  this.balloonContent = '',
  this.visibility = true,
  this.viewOrbit = true,
  this.scale = 2.5,
  this.lookAt,
  this.tour,
  required this.id,
  required this.name,
  this.point,
  this.line,
  this.styleId,
  this.orbitContent,
});