PdfShapeAnnotation constructor

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

Creates a PdfShapeAnnotation.

Implementation

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