CPDFLinkAnnotation constructor

CPDFLinkAnnotation({
  1. required String title,
  2. required int page,
  3. required String content,
  4. String uuid = '',
  5. DateTime? createDate,
  6. CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
  7. CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
  8. required CPDFRectF rect,
  9. CPDFAction? action,
})

Implementation

CPDFLinkAnnotation({
  required super.title,
  required super.page,
  required super.content,
  super.uuid = '',
  super.createDate,
  super.markState,
  super.reviewState,
  required super.rect,
  this.action,
}) : super(type: CPDFAnnotationType.link);