PdfAnnotInk constructor
PdfAnnotInk(})
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,
);