exifVersion property

String? exifVersion

EXIF version

Implementation

String? get exifVersion =>
    tags == null || tags![PdfExifTag.ExifVersion] == null
        ? null
        : utf8.decode(tags![PdfExifTag.ExifVersion]);