action property

PdfAction? action

Gets or sets the action for the link annotation.

Implementation

PdfAction? get action => _action;
void action=(PdfAction? value)

Implementation

set action(PdfAction? value) {
  if (value != null) {
    _action = value;
  }
}