PdfAnnotInk constructor

PdfAnnotInk(
  1. PdfDocument document,
  2. List<List<PdfPoint>> points, {
  3. required PdfRect rect,
  4. PdfBorder? border,
  5. Set<PdfAnnotFlags>? flags,
  6. DateTime? date,
  7. PdfColor? color,
  8. String? subject,
  9. String? author,
  10. String? content,
})

Create an Ink List annotation

Implementation

PdfAnnotInk(
  this.document,
  this.points, {
  required super.rect,
  super.border,
  super.flags,
  super.date,
  super.color,
  super.subject,
  super.author,
  super.content,
}) : super(
        subtype: '/Ink',
      );