PdfLinkAnnotation constructor

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

Creates a PdfLinkAnnotation.

Implementation

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