MarkerOptions constructor

const MarkerOptions({
  1. NAnimation? animation,
  2. required Coord position,
  3. NIcon? icon,
  4. MarkerShape? shape,
  5. String? title,
  6. String? cursor,
  7. bool? clickable,
  8. bool? draggable,
  9. bool? visible,
  10. int? zIndex,
  11. bool? collisionBehavior,
  12. NSize? collisionBoxSize,
})

Implementation

const MarkerOptions({
  this.animation,
  required this.position,
  this.icon,
  this.shape,
  this.title,
  this.cursor,
  this.clickable,
  this.draggable,
  this.visible,
  this.zIndex,
  this.collisionBehavior,
  this.collisionBoxSize,
});