PdfMarkupAnnotation constructor
- required int pageIndex,
- required PdfAnnotationType subtype,
- required List<
PdfQuadPoints> quadPoints, - String? markedText,
- String? contents,
- String? author,
- PdfRect? rect,
- PdfColor? color,
- PdfDate? modifiedDate,
- required int flags,
- 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,
});