Site constructor

Site({
  1. String? siteId,
  2. String? name,
  3. String? formatAddress,
  4. AddressDetail? address,
  5. Coordinate? location,
  6. CoordinateBounds? viewport,
  7. double? distance,
  8. Poi? poi,
  9. AutoCompletePrediction? prediction,
  10. int? utcOffset,
})

Implementation

Site({
  this.siteId,
  this.name,
  this.formatAddress,
  this.address,
  this.location,
  this.viewport,
  this.distance,
  this.poi,
  this.prediction,
  int? utcOffset,
}) : utcOffset = utcOffset ?? 0;