TextInput constructor

TextInput(
  1. String customId, {
  2. required TextInputStyle style,
  3. int? minLength,
  4. int? maxLength,
  5. bool? isRequired,
  6. String? value,
  7. String? placeholder,
})

Implementation

TextInput(
  this.customId, {
  required this.style,
  this.minLength,
  this.maxLength,
  this.isRequired,
  this.value,
  this.placeholder,
});