CPDFStampAnnotation constructor

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

Implementation

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