ImageMarker constructor

ImageMarker({
  1. required double x,
  2. required double y,
  3. required Color color,
  4. String? markerTitle,
  5. String? note,
  6. List<String>? photos,
  7. List<String>? photosName,
})

Implementation

ImageMarker({
  required this.x,
  required this.y,
  required this.color,
  this.markerTitle,
  this.note,
  this.photos,
  this.photosName,
});