CPDFEditTextArea constructor

const CPDFEditTextArea({
  1. required String uuid,
  2. required int page,
  3. String text = '',
  4. CPDFAlignment alignment = CPDFAlignment.left,
  5. double fontSize = 12.0,
  6. Color color = Colors.black,
  7. double alpha = 255,
  8. String familyName = 'Helvetica',
  9. String styleName = 'Regular',
})

Implementation

const CPDFEditTextArea({
  required super.uuid,
  required super.page,
  this.text = '',
  this.alignment = CPDFAlignment.left,
  this.fontSize = 12.0,
  this.color = Colors.black,
  this.alpha = 255,
  this.familyName = 'Helvetica',
  this.styleName = 'Regular',
}) : super(type: CPDFEditAreaType.text);