CPDFTextFieldAttr constructor

const CPDFTextFieldAttr({
  1. Color? fillColor = const Color(0xFFDDE9FF),
  2. Color? borderColor = const Color(0xFF1460F3),
  3. int? borderWidth = 2,
  4. Color? fontColor = Colors.black,
  5. int? fontSize = 20,
  6. bool? isBold = false,
  7. bool? isItalic = false,
  8. CPDFAlignment? alignment = CPDFAlignment.left,
  9. bool? multiline = true,
  10. CPDFTypeface? typeface = CPDFTypeface.helvetica,
})

Implementation

const CPDFTextFieldAttr(
    {this.fillColor = const Color(0xFFDDE9FF),
    this.borderColor = const Color(0xFF1460F3),
    this.borderWidth = 2,
    this.fontColor = Colors.black,
    this.fontSize = 20,
    this.isBold = false,
    this.isItalic = false,
    this.alignment = CPDFAlignment.left,
    this.multiline = true,
    this.typeface = CPDFTypeface.helvetica});