TextField constructor

const TextField({
  1. String name = '',
  2. String value = '',
  3. int? maxLength,
  4. double width = 160,
})

TextField API.

Implementation

const TextField({
  this.name = '',
  this.value = '',
  this.maxLength,
  this.width = 160,
});