signature property
Uint8List?
get
signature
Gets or sets the signature image bytes of the PdfSignatureFormField.
Implementation
Uint8List? get signature => _signature;
set
signature
(Uint8List? value)
Implementation
set signature(Uint8List? value) {
if (readOnly) {
return;
}
(PdfFormFieldHelper.getHelper(this) as PdfSignatureFormFieldHelper)
.invokeValueChanged(value);
}