Signature constructor
Signature({
- Widget? child,
- @Deprecated('Use value instead') PdfSignatureBase? crypto,
- PdfSignatureBase? value,
- required String name,
- bool appendOnly = false,
- PdfBorder? border,
- Set<
PdfAnnotFlags> ? flags, - DateTime? date,
- PdfColor? color,
- PdfAnnotHighlighting? highlighting,
- List<
Uint8List> ? crl, - List<
Uint8List> ? cert, - List<
Uint8List> ? ocsp, - PdfIndirect? replaces,
Implementation
Signature({
Widget? child,
@Deprecated('Use value instead') PdfSignatureBase? crypto,
PdfSignatureBase? value,
required this.name,
this.appendOnly = false,
this.border,
this.flags,
this.date,
this.color,
this.highlighting,
this.crl,
this.cert,
this.ocsp,
this.replaces,
}) : value = value ?? crypto,
super(child: child);