action property

  1. @override
PdfAction? action
override

Gets the action.

Implementation

@override
PdfAction? get action => super.action;
  1. @override
void action=(PdfAction? value)
override

Sets the action.

Implementation

@override
set action(PdfAction? value) {
  if (value != null) {
    super.action = value;
    _helper._uriAction!.next = value;
  }
}