LandmarkJson constructor

LandmarkJson({
  1. required Coordinates? coordinates,
  2. String? name,
  3. String? description,
  4. String? author,
  5. GemImage? image,
  6. ExtraInfo? extrainfo,
  7. AddressInfo? address,
})

Implementation

LandmarkJson({
  required this.coordinates,
  this.name,
  this.description,
  this.author,
  this.image,
  this.extrainfo,
  this.address,
});