PdfUnknownAnnotation constructor

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

Creates a PdfUnknownAnnotation.

Implementation

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