PdfSignatureRequest constructor
PdfSignatureRequest({
- required int pageNumber,
- required PdfSignatureSigner signer,
- required PdfSignatureBounds bounds,
- String fieldName = 'Signature1',
- String? reason,
- String? location,
- String? contactInfo,
- String? name,
- DateTime? signingTime,
- PdfSignatureAppearance? appearance,
- Widget? appearanceWidget,
- void drawAppearance(
- PdfGraphics graphics,
- PdfRect bounds
- int? docMdpPermissionP,
- PdfTimestampProvider? timestampProvider,
- int contentsReserveSize = 16384,
- 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,
});