PdfAnnotationActions constructor

PdfAnnotationActions({
  1. PdfAction? mouseEnter,
  2. PdfAction? mouseLeave,
  3. PdfAction? mouseUp,
  4. PdfAction? mouseDown,
  5. PdfAction? gotFocus,
  6. PdfAction? lostFocus,
})

Initializes a new instance of the PdfAnnotationActions class.

Implementation

PdfAnnotationActions({
  PdfAction? mouseEnter,
  PdfAction? mouseLeave,
  PdfAction? mouseUp,
  PdfAction? mouseDown,
  PdfAction? gotFocus,
  PdfAction? lostFocus,
}) {
  _helper = PdfAnnotationActionsHelper();
  _initValues(
    mouseEnter,
    mouseLeave,
    mouseUp,
    mouseDown,
    gotFocus,
    lostFocus,
  );
}