PdfAnnotSign constructor

PdfAnnotSign({
  1. required PdfRect rect,
  2. String? fieldName,
  3. PdfBorder? border,
  4. Set<PdfAnnotFlags>? flags,
  5. DateTime? date,
  6. PdfColor? color,
  7. 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,
     );