CPDFAnnotAttr.ink constructor

const CPDFAnnotAttr.ink({
  1. Color color = const Color(0xFF1460F3),
  2. int alpha = 100,
  3. int borderWidth = 10,
})

Implementation

const CPDFAnnotAttr.ink(
    {Color color = const Color(0xFF1460F3),
    int alpha = 100,
    int borderWidth = 10})
    : this(
          annotationType: CPDFAnnotationType.ink,
          color: color,
          alpha: alpha,
          borderWidth: borderWidth);