PdfSignatureConfig constructor

const PdfSignatureConfig({
  1. double x = 36.0,
  2. double y = 700.0,
  3. double width = 200.0,
  4. double height = 50.0,
  5. int pageNumber = 1,
  6. Uint8List? signatureImage,
  7. double signatureImageWidth = 50.0,
  8. double signatureImageHeight = 50.0,
  9. String? contact,
  10. String? signerName,
  11. DateTime? signDate,
})

Implementation

const PdfSignatureConfig({
  this.x = 36.0,
  this.y = 700.0,
  this.width = 200.0,
  this.height = 50.0,
  this.pageNumber = 1,
  this.signatureImage,
  this.signatureImageWidth = 50.0,
  this.signatureImageHeight = 50.0,
  this.contact,
  this.signerName,
  this.signDate,
});