CPDFTextFieldAttr constructor

const CPDFTextFieldAttr({
  1. Color? fillColor = const Color(0xFFDDE9FF),
  2. Color? borderColor = const Color(0xFF1460F3),
  3. double? borderWidth = 2,
  4. Color? fontColor = Colors.black,
  5. double? fontSize = 20,
  6. CPDFAlignment? alignment = CPDFAlignment.left,
  7. bool? multiline = true,
  8. String? familyName = 'Helvetica',
  9. String? styleName = '',
})

Implementation

const CPDFTextFieldAttr(
    {this.fillColor = const Color(0xFFDDE9FF),
    this.borderColor = const Color(0xFF1460F3),
    this.borderWidth = 2,
    this.fontColor = Colors.black,
    this.fontSize = 20,
    this.alignment = CPDFAlignment.left,
    this.multiline = true,
    this.familyName = 'Helvetica',
    this.styleName = ''});