CircleAnnotation constructor
CircleAnnotation({})
Implementation
CircleAnnotation({
Widget? child,
PdfColor? color,
PdfColor? interiorColor,
PdfBorder? border,
String? author,
DateTime? date,
String? subject,
String? content,
}) : super(
child: child ??
Circle(
fillColor: interiorColor,
strokeWidth: border?.width ?? 1.0,
strokeColor: color),
builder: AnnotationCircle(
color: color,
interiorColor: interiorColor,
border: border,
author: author,
date: date,
content: content,
subject: subject,
),
);