Marker constructor

Marker({
  1. MarkerLinks? links,
  2. DateTime? createdAt,
  3. String? id,
  4. required Point point,
  5. String? type,
})

Returns a new Marker instance.

Implementation

Marker({
  this.links,
  this.createdAt,
  this.id,
  required this.point,
  this.type,
});