PdfSignatureRequest constructor

PdfSignatureRequest({
  1. required int pageNumber,
  2. required PdfSignatureSigner signer,
  3. required PdfSignatureBounds bounds,
  4. String fieldName = 'Signature1',
  5. String? reason,
  6. String? location,
  7. String? contactInfo,
  8. String? name,
  9. DateTime? signingTime,
  10. PdfSignatureAppearance? appearance,
  11. Widget? appearanceWidget,
  12. void drawAppearance(
    1. PdfGraphics graphics,
    2. PdfRect bounds
    )?,
  13. int? docMdpPermissionP,
  14. PdfTimestampProvider? timestampProvider,
  15. int contentsReserveSize = 16384,
  16. int byteRangeDigits = 10,
})

Creates a request for adding a signature to a loaded document.

Implementation

PdfSignatureRequest({
  required this.pageNumber,
  required this.signer,
  required this.bounds,
  this.fieldName = 'Signature1',
  this.reason,
  this.location,
  this.contactInfo,
  this.name,
  this.signingTime,
  this.appearance,
  this.appearanceWidget,
  this.drawAppearance,
  this.docMdpPermissionP,
  this.timestampProvider,
  this.contentsReserveSize = 16384,
  this.byteRangeDigits = 10,
});