Photo constructor

Photo({
  1. double? apertureFNumber,
  2. String? cameraMake,
  3. String? cameraModel,
  4. String? exposureTime,
  5. double? focalLength,
  6. int? isoEquivalent,
})

Implementation

Photo({
  this.apertureFNumber,
  this.cameraMake,
  this.cameraModel,
  this.exposureTime,
  this.focalLength,
  this.isoEquivalent,
});