CPDFLinkAnnotation constructor
CPDFLinkAnnotation({
- required CPDFAnnotationType type,
- required String title,
- required int page,
- required String content,
- required String uuid,
- DateTime? createDate,
- required CPDFRectF rect,
- CPDFAction? action,
Implementation
CPDFLinkAnnotation(
{required CPDFAnnotationType type,
required String title,
required int page,
required String content,
required String uuid,
DateTime? createDate,
required CPDFRectF rect,
this.action})
: super(
type: type,
title: title,
page: page,
content: content,
uuid: uuid,
createDate: createDate,
rect: rect);