CPDFPushButtonAttr constructor

const CPDFPushButtonAttr({
  1. String? title = 'Button',
  2. Color? fillColor = const Color(0xFFDDE9FF),
  3. Color? borderColor = const Color(0xFF1460F3),
  4. double? borderWidth = 2,
  5. Color? fontColor = Colors.black,
  6. double? fontSize = 20,
  7. String? familyName = 'Helvetica',
  8. String? styleName = '',
})

Implementation

const CPDFPushButtonAttr(
    {this.title = 'Button',
    this.fillColor = const Color(0xFFDDE9FF),
    this.borderColor = const Color(0xFF1460F3),
    this.borderWidth = 2,
    this.fontColor = Colors.black,
    this.fontSize = 20,
    this.familyName = 'Helvetica',
    this.styleName = ''});