TextField constructor

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

Creates a TextField.

Implementation

TextField({
  this.child,
  this.width = 120,
  this.height = 13,
  this.textStyle,
  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.replaces,
});