ExifDisplayData constructor

const ExifDisplayData({
  1. String? creator,
  2. String? copyright,
  3. DateTime? captureDate,
  4. String? cameraMake,
  5. String? cameraModel,
  6. String? lensMake,
  7. String? lensModel,
  8. String? exposureTime,
  9. String? fNumber,
  10. String? focalLength,
  11. String? iso,
  12. int? width,
  13. int? height,
  14. double? latitude,
  15. double? longitude,
})

Implementation

const ExifDisplayData({
  this.creator,
  this.copyright,
  this.captureDate,
  this.cameraMake,
  this.cameraModel,
  this.lensMake,
  this.lensModel,
  this.exposureTime,
  this.fNumber,
  this.focalLength,
  this.iso,
  this.width,
  this.height,
  this.latitude,
  this.longitude,
});