CPDFAnnotAttr.arrow constructor
const
CPDFAnnotAttr.arrow({
- Color borderColor = const Color(0xFF1460F3),
- int borderAlpha = 100,
- int borderWidth = 5,
- CPDFBorderStyle borderStyle = const CPDFBorderStyle.solid(),
- CPDFLineType startLineType = CPDFLineType.none,
- CPDFLineType tailLineType = CPDFLineType.openArrow,
Implementation
const CPDFAnnotAttr.arrow(
{Color borderColor = const Color(0xFF1460F3),
int borderAlpha = 100,
int borderWidth = 5,
CPDFBorderStyle borderStyle = const CPDFBorderStyle.solid(),
CPDFLineType startLineType = CPDFLineType.none,
CPDFLineType tailLineType = CPDFLineType.openArrow})
: this(
annotationType: CPDFAnnotationType.arrow,
borderColor: borderColor,
borderAlpha: borderAlpha,
borderWidth: borderWidth,
borderStyle: borderStyle,
startLineType: startLineType,
tailLineType: tailLineType);