CPDFMarkupAnnotation constructor
CPDFMarkupAnnotation({
- required CPDFAnnotationType type,
- String title = "",
- required int page,
- String content = "",
- String uuid = '',
- DateTime? createDate,
- CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
- CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
- required CPDFRectF rect,
- required String markedText,
- required Color color,
- 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,
});