TextField constructor

TextField({
  1. Widget? child,
  2. double width = 120,
  3. double height = 13,
  4. required String name,
  5. PdfBorder? border,
  6. Set<PdfAnnotFlags>? flags,
  7. DateTime? date,
  8. PdfColor? color,
  9. PdfColor? backgroundColor,
  10. PdfAnnotHighlighting? highlighting,
  11. int? maxLength,
  12. String? alternateName,
  13. String? mappingName,
  14. Set<PdfFieldFlags>? fieldFlags,
  15. String? value,
  16. String? defaultValue,
  17. TextStyle? textStyle,
  18. PdfIndirect? replaces,
})

Implementation

TextField({
  this.child,
  this.width = 120,
  this.height = 13,
  required this.name,
  this.border,
  this.flags,
  this.date,
  this.color,
  this.backgroundColor,
  this.highlighting,
  this.maxLength,
  this.alternateName,
  this.mappingName,
  this.fieldFlags,
  this.value,
  this.defaultValue,
  this.textStyle,
  this.replaces,
});