added runtime type to iso

This commit is contained in:
Vadim 2025-01-20 19:55:47 +01:00
parent 831515c212
commit 34f6612af9

View file

@ -18,7 +18,7 @@ Future<double> evFromImage(Uint8List bytes) async {
throw ArgumentError( throw ArgumentError(
'Error parsing EXIF', 'Error parsing EXIF',
[ [
if (iso == null) '$_isoExifKey: "${tags[_isoExifKey]?.printable}"', if (iso == null) '$_isoExifKey: ${tags[_isoExifKey]?.printable} ${tags[_isoExifKey]?.printable.runtimeType}',
if (apertureValueRatio == null) '$_apertureExifKey: $apertureValueRatio', if (apertureValueRatio == null) '$_apertureExifKey: $apertureValueRatio',
if (speedValueRatio == null) '$_shutterSpeedExifKey: $speedValueRatio', if (speedValueRatio == null) '$_shutterSpeedExifKey: $speedValueRatio',
].join(', '), ].join(', '),