InkAnnotation constructor
InkAnnotation({})
Implementation
InkAnnotation({
required List<List<PdfPoint>> points,
Widget? child,
PdfColor? color,
PdfBorder? border,
String? author,
DateTime? date,
String? content,
String? subject,
}) : super(
child: child ??
InkList(
points: points,
strokeColor: color,
strokeWidth: border?.width ?? 1.0),
builder: AnnotationInk(
points,
color: color,
border: border,
author: author,
date: date,
content: content,
subject: subject,
),
);