CPDFLinkAnnotation constructor

CPDFLinkAnnotation({
  1. required CPDFAnnotationType type,
  2. required String title,
  3. required int page,
  4. required String content,
  5. required String uuid,
  6. DateTime? createDate,
  7. required CPDFRectF rect,
  8. 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);