updateFieldDict method
Replaces the field dictionary with a prebuilt one.
Implementation
bool updateFieldDict(
PdfSignatureFieldObjectInfo field,
PdfDict<PdfDataType> updated,
) {
if (field.fieldRef != null) {
PdfObject<PdfDict<PdfDataType>>(
document,
objser: field.fieldRef!.obj,
objgen: field.fieldRef!.gen,
params: updated,
);
return true;
}
return _replaceDirectField(field, updated);
}