CPDFFreetextAttr constructor

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

Implementation

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