ImageInfo constructor

const ImageInfo({
  1. ImageColorMode? colorMode,
  2. int? orientation,
  3. required String format,
  4. required bool sequence,
  5. required Dimensions size,
  6. ImageInfoGeoLocation? geoLocation,
  7. DateTime? datetimeOriginal,
  8. List<int>? dpi,
})

Implementation

const ImageInfo({
  this.colorMode,
  this.orientation,
  required this.format,
  required this.sequence,
  required this.size,
  this.geoLocation,
  this.datetimeOriginal,
  this.dpi,
});