action property
PdfAction?
get
action
Gets or sets the action for the link annotation.
Implementation
PdfAction? get action => _action;
set
action
(PdfAction? value)
Implementation
set action(PdfAction? value) {
if (value != null) {
_action = value;
}
}