PointOfInterest constructor

const PointOfInterest(
  1. int layer,
  2. List<Tag> tags,
  3. ILatLong position
)

Implementation

const PointOfInterest(this.layer, this.tags, this.position)
    : assert(layer >= -5),
      assert(layer <= 10);