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 PdfRect rect,
  PdfBorder? border,
  Set<PdfAnnotFlags>? flags,
  DateTime? date,
  PdfColor? color,
  String? subject,
  String? author,
  String? content,
}) : super(
        subtype: '/Ink',
        rect: rect,
        border: border,
        flags: flags,
        date: date,
        color: color,
        subject: subject,
        author: author,
        content: content,
      );