fields property

Map<String, PdfAcroField> get fields

Retrieves the form fields (AcroFields) from the document.

Implementation

Map<String, PdfAcroField> get fields {
  if (!_fieldsLoaded) {
    _loadFields();
  }
  return _fields;
}