PolyLineAnnotation constructor
PolyLineAnnotation({})
Implementation
PolyLineAnnotation({
required List<PdfPoint> points,
PdfColor? color,
PdfBorder? border,
String? author,
DateTime? date,
String? content,
String? subject,
}) : super(
child: Polygon(
points: points,
strokeColor: color,
close: false,
strokeWidth: border?.width ?? 1.0),
builder: AnnotationPolygon(
points,
color: color,
border: border,
author: author,
date: date,
content: content,
subject: subject,
),
);