PdfLineAnnotation constructor

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

Creates a PdfLineAnnotation.

Implementation

const PdfLineAnnotation({
  required super.pageIndex,
  required this.lineStart,
  required this.lineEnd,
  super.contents,
  super.author,
  super.rect,
  super.color,
  super.modifiedDate,
  required super.flags,
  super.popup,
});