CPDFTextStamp constructor

const CPDFTextStamp({
  1. required String content,
  2. required String date,
  3. CPDFTextStampShape shape = CPDFTextStampShape.rect,
  4. CPDFTextStampColor color = CPDFTextStampColor.white,
})

Implementation

const CPDFTextStamp({
  required this.content,
  required this.date,
  this.shape = CPDFTextStampShape.rect,
  this.color = CPDFTextStampColor.white,
});