Landmark constructor

Landmark({
  1. LandmarkType? type,
  2. double? x,
  3. double? y,
})

Implementation

Landmark({
  this.type,
  this.x,
  this.y,
});