CPDFLinkAnnotation constructor
CPDFLinkAnnotation({
- required String title,
- required int page,
- required String content,
- String uuid = '',
- DateTime? createDate,
- CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
- CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
- required CPDFRectF rect,
- 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);