Photo constructor

Photo({
  1. String? photoReference,
  2. num? height,
  3. num? width,
  4. List<String>? htmlAttributions,
})

Implementation

Photo({
  this.photoReference,
  this.height,
  this.width,
  this.htmlAttributions,
});