next property

PdfAction? next

Gets the next action to be performed after the action represented by this instance.

Implementation

PdfAction? get next => _helper.action;
void next=(PdfAction? value)

Sets the next action to be performed after the action represented by this instance.

Implementation

set next(PdfAction? value) {
  if (value != null && _helper.action != value) {
    _helper.action = value;
    _helper.dictionary.setArray(PdfDictionaryProperties.next,
        <IPdfPrimitive>[PdfReferenceHolder(_helper.action)]);
  }
}