Result constructor

Result({
  1. List<AddressComponent>? addressComponents,
  2. String? adrAddress,
  3. String? businessStatus,
  4. bool? curbsidePickup,
  5. CurrentOpeningHours? currentOpeningHours,
  6. bool? delivery,
  7. bool? dineIn,
  8. String? formattedAddress,
  9. String? formattedPhoneNumber,
  10. Geometry? geometry,
  11. String? icon,
  12. String? iconBackgroundColor,
  13. String? iconMaskBaseUri,
  14. String? internationalPhoneNumber,
  15. String? name,
  16. OpeningHours? openingHours,
  17. List<Photo>? photos,
  18. String? placeId,
  19. PlusCode? plusCode,
  20. int? priceLevel,
  21. double? rating,
  22. String? reference,
  23. bool? reservable,
  24. List<Review>? reviews,
})

Creates a Result instance with all place details.

Implementation

Result({
  this.addressComponents,
  this.adrAddress,
  this.businessStatus,
  this.curbsidePickup,
  this.currentOpeningHours,
  this.delivery,
  this.dineIn,
  this.formattedAddress,
  this.formattedPhoneNumber,
  this.geometry,
  this.icon,
  this.iconBackgroundColor,
  this.iconMaskBaseUri,
  this.internationalPhoneNumber,
  this.name,
  this.openingHours,
  this.photos,
  this.placeId,
  this.plusCode,
  this.priceLevel,
  this.rating,
  this.reference,
  this.reservable,
  this.reviews,
});