CPDFEditorTextAttr constructor

const CPDFEditorTextAttr({
  1. Color fontColor = Colors.black,
  2. int fontColorAlpha = 255,
  3. int fontSize = 30,
  4. bool isBold = false,
  5. bool isItalic = false,
  6. CPDFTypeface typeface = CPDFTypeface.helvetica,
  7. CPDFAlignment alignment = CPDFAlignment.left,
})

Implementation

const CPDFEditorTextAttr(
    {this.fontColor = Colors.black,
    this.fontColorAlpha = 255,
    this.fontSize = 30,
    this.isBold = false,
    this.isItalic = false,
    this.typeface = CPDFTypeface.helvetica,
    this.alignment = CPDFAlignment.left});