PdfMarkupAnnotation constructor

const PdfMarkupAnnotation({
  1. required int pageIndex,
  2. required PdfAnnotationType subtype,
  3. required List<PdfQuadPoints> quadPoints,
  4. String? markedText,
  5. String? contents,
  6. String? author,
  7. PdfRect? rect,
  8. PdfColor? color,
  9. PdfDate? modifiedDate,
  10. required int flags,
  11. PdfPopupAnnotation? popup,
})

Creates a PdfMarkupAnnotation.

Implementation

const PdfMarkupAnnotation({
  required super.pageIndex,
  required this.subtype,
  required this.quadPoints,
  this.markedText,
  super.contents,
  super.author,
  super.rect,
  super.color,
  super.modifiedDate,
  required super.flags,
  super.popup,
});