CPDFAnnotation constructor
CPDFAnnotation({
- required CPDFAnnotationType type,
- String title = "",
- required int page,
- String content = "",
- required String uuid,
- DateTime? createDate,
- CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
- CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
- required CPDFRectF rect,
Implementation
CPDFAnnotation({
required this.type,
this.title = "",
required this.page,
this.content = "",
required this.uuid,
this.createDate,
this.markState = CPDFAnnotationMarkState.unmarked,
this.reviewState = CPDFAnnotationReviewState.none,
required this.rect,
});