Photo constructor

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

Implementation

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