CPDFMarkupAnnotation constructor

CPDFMarkupAnnotation({
  1. required CPDFAnnotationType type,
  2. String title = "",
  3. required int page,
  4. String content = "",
  5. String uuid = '',
  6. DateTime? createDate,
  7. CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
  8. CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
  9. required CPDFRectF rect,
  10. required String markedText,
  11. required Color color,
  12. double alpha = 255,
})

Implementation

CPDFMarkupAnnotation({
  required super.type,
  super.title,
  required super.page,
  super.content,
  super.uuid = '',
  super.createDate,
  super.markState,
  super.reviewState,
  required super.rect,
  required this.markedText,
  required this.color,
  this.alpha = 255,
});