PdfStampAnnotation constructor

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

Creates a PdfStampAnnotation.

Implementation

const PdfStampAnnotation({
  required super.pageIndex,
  super.contents,
  super.author,
  super.rect,
  super.color,
  super.modifiedDate,
  required super.flags,
  super.popup,
});