CPDFAnnotAttr.arrow constructor

const CPDFAnnotAttr.arrow({
  1. Color borderColor = const Color(0xFF1460F3),
  2. int borderAlpha = 100,
  3. int borderWidth = 5,
  4. CPDFBorderStyle borderStyle = const CPDFBorderStyle.solid(),
  5. CPDFLineType startLineType = CPDFLineType.none,
  6. 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);