Location constructor

Location({
  1. String? geo,
  2. String? osm,
  3. String? value,
})

Constructor for creating a Location object.

The constructor initializes a Location object with optional named parameters:

  • geo: The geo attribute value of the location.
  • osm: The osm attribute value of the location.
  • value: The value of the location.

Implementation

Location({
  this.geo,
  this.osm,
  this.value,
});