Photo constructor

Photo({
  1. String? name,
  2. int? widthPx,
  3. int? heightPx,
  4. List<AuthorAttribution>? authorAttributions,
  5. String? flagContentUri,
  6. String? googleMapsUri,
  7. String? photoUri,
})

Implementation

Photo({
  this.name,
  this.widthPx,
  this.heightPx,
  this.authorAttributions,
  this.flagContentUri,
  this.googleMapsUri,
  this.photoUri,
});