PdfTextAnnotation constructor

const PdfTextAnnotation({
  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 PdfTextAnnotation.

Implementation

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