PdfAnnotSign constructor
PdfAnnotSign({
- required PdfRect rect,
- String? fieldName,
- PdfBorder? border,
- Set<
PdfAnnotFlags> ? flags, - DateTime? date,
- PdfColor? color,
- PdfAnnotHighlighting? highlighting,
Implementation
PdfAnnotSign({
required PdfRect rect,
String? fieldName,
PdfBorder? border,
Set<PdfAnnotFlags>? flags,
DateTime? date,
PdfColor? color,
PdfAnnotHighlighting? highlighting,
}) : super(
rect: rect,
fieldType: '/Sig',
fieldName: fieldName,
border: border,
flags: flags,
date: date,
color: color,
highlighting: highlighting,
);