AnnotationAction constructor

AnnotationAction(
  1. Annotation annotation,
  2. AnnotationType type,
  3. List<PdfTextMarkupAnnotation> pdfAnnotation, {
  4. bool isAdd = true,
})

Creates an AnnotationAction with the given annotation, type, and pdfAnnotation.

By default, isAdd is true, indicating an add operation.

Implementation

AnnotationAction(
  this.annotation,
  this.type,
  this.pdfAnnotation, {
  this.isAdd = true,
});