PdfPolygonAnnotation constructor

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

Creates a PdfPolygonAnnotation.

Implementation

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