CPDFStampAnnotation constructor

CPDFStampAnnotation({
  1. String title = "",
  2. required int page,
  3. String content = "",
  4. String uuid = '',
  5. DateTime? createDate,
  6. CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
  7. CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
  8. required CPDFRectF rect,
  9. CPDFStandardStamp? standardStamp,
  10. CPDFStampType? stampType,
  11. CPDFTextStamp? textStamp,
})

Implementation

CPDFStampAnnotation({
  super.title,
  required super.page,
  super.content,
  super.uuid = '',
  super.createDate,
  super.markState,
  super.reviewState,
  required super.rect,
  this.standardStamp,
  this.stampType,
  this.textStamp,
}) : super(type: CPDFAnnotationType.stamp);