CPDFAnnotAttr constructor

const CPDFAnnotAttr({
  1. required CPDFAnnotationType? annotationType,
  2. Color? color,
  3. int? alpha,
  4. int? borderWidth,
  5. Color? fillColor,
  6. Color? borderColor,
  7. int? borderAlpha,
  8. int? colorAlpha,
  9. CPDFBorderStyle? borderStyle,
  10. CPDFLineType? startLineType,
  11. CPDFLineType? tailLineType,
  12. Color? fontColor,
  13. int? fontColorAlpha,
  14. int? fontSize,
  15. bool? isBold,
  16. bool? isItalic,
  17. CPDFAlignment? alignment,
  18. CPDFTypeface? typeface,
})

Implementation

const CPDFAnnotAttr(
    {required this.annotationType,
    this.color,
    this.alpha,
    this.borderWidth,
    this.fillColor,
    this.borderColor,
    this.borderAlpha,
    this.colorAlpha,
    this.borderStyle,
    this.startLineType,
    this.tailLineType,
    this.fontColor,
    this.fontColorAlpha,
    this.fontSize,
    this.isBold,
    this.isItalic,
    this.alignment,
    this.typeface});