PdfSignatureFieldInfo constructor

const PdfSignatureFieldInfo({
  1. required String? fieldName,
  2. String? reason,
  3. String? location,
  4. String? name,
  5. String? signingTimeRaw,
  6. String? filter,
  7. String? subFilter,
  8. List<int>? byteRange,
  9. PdfIndirectRef? pageRef,
  10. int? pageIndex,
  11. List<double>? rect,
  12. bool? signatureDictionaryPresent,
})

Implementation

const PdfSignatureFieldInfo({
  required this.fieldName,
  this.reason,
  this.location,
  this.name,
  this.signingTimeRaw,
  this.filter,
  this.subFilter,
  this.byteRange,
  this.pageRef,
  this.pageIndex,
  this.rect,
  this.signatureDictionaryPresent,
});