CPDFReplyAnnotation constructor

CPDFReplyAnnotation({
  1. CPDFAnnotationType type = CPDFAnnotationType.unknown,
  2. String title = '',
  3. required int page,
  4. String content = '',
  5. required String uuid,
  6. DateTime? createDate,
  7. DateTime? modifyDate,
  8. CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
  9. CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
  10. required CPDFRectF rect,
})

Implementation

CPDFReplyAnnotation({
  super.type = CPDFAnnotationType.unknown,
  super.title = '',
  required super.page,
  super.content = '',
  required super.uuid,
  super.createDate,
  this.modifyDate,
  super.markState,
  super.reviewState,
  required super.rect,
});