Landmark constructor

Landmark({
  1. String? name,
  2. String? placeId,
  3. LocalizedText? displayName,
  4. List<PlaceType>? types,
  5. SpatialRelationship? spatialRelationship,
  6. double? straightLineDistanceMeters,
  7. double? travelDistanceMeters,
})

Implementation

Landmark({
  this.name,
  this.placeId,
  this.displayName,
  this.types,
  this.spatialRelationship,
  this.straightLineDistanceMeters,
  this.travelDistanceMeters,
});