info property
PdfDict?
get
info
Get the Info dictionary.
Implementation
PdfDict? get info {
final infoRef = trailer.getRef('Info');
if (infoRef == null) return null;
final obj = getObject(infoRef.objectNumber);
return obj?.dict;
}