PdfAnnotCircle constructor
PdfAnnotCircle({})
Create an Circle annotation
Implementation
PdfAnnotCircle({
required PdfRect rect,
PdfBorder? border,
Set<PdfAnnotFlags>? flags,
DateTime? date,
PdfColor? color,
this.interiorColor,
String? subject,
String? author,
}) : super(
subtype: '/Circle',
rect: rect,
border: border,
flags: flags,
date: date,
color: color,
subject: subject,
author: author,
);