CPDFShapeAttr constructor

const CPDFShapeAttr({
  1. Color? fillColor = const Color(0xFF1460F3),
  2. Color? borderColor = Colors.black,
  3. int? colorAlpha = 128,
  4. int? borderWidth = 2,
  5. CPDFBorderStyle? borderStyle = const CPDFBorderStyle.solid(),
})

Implementation

const CPDFShapeAttr(
    {this.fillColor = const Color(0xFF1460F3),
    this.borderColor = Colors.black,
    this.colorAlpha = 128,
    this.borderWidth = 2,
    this.borderStyle = const CPDFBorderStyle.solid()});