signature property

PdfSignature? signature

Gets or sets the digital signature for signing the field.

Implementation

PdfSignature? get signature {
  if (_helper.isLoadedField && _signature == null) {
    if (_helper.dictionary!.containsKey(PdfDictionaryProperties.v)) {
      _setSignature(_helper.dictionary![PdfDictionaryProperties.v]);
    }
  }
  return _signature;
}
void signature=(PdfSignature? value)

Implementation

set signature(PdfSignature? value) {
  _initializeSignature(value);
}