CPDFAnnotAttr.circle constructor
const
CPDFAnnotAttr.circle({
- Color fillColor = const Color(0xFF1460F3),
- Color borderColor = Colors.black,
- int colorAlpha = 128,
- int borderWidth = 2,
- CPDFBorderStyle borderStyle = const CPDFBorderStyle.solid(),
Implementation
const CPDFAnnotAttr.circle({
Color fillColor = const Color(0xFF1460F3),
Color borderColor = Colors.black,
int colorAlpha = 128,
int borderWidth = 2,
CPDFBorderStyle borderStyle = const CPDFBorderStyle.solid(),
}) : this(
annotationType: CPDFAnnotationType.circle,
fillColor: fillColor,
borderColor: borderColor,
colorAlpha: colorAlpha,
borderWidth: borderWidth,
borderStyle: borderStyle);