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