TextInputBuilder constructor

TextInputBuilder({
  1. required String customId,
  2. required String label,
  3. required TextInputStyle style,
  4. int? minLength,
  5. int? maxLength,
  6. bool required = false,
  7. String? placeholder,
  8. String? value,
})

Implementation

TextInputBuilder({
  required this.customId,
  required this.label,
  required this.style,
  this.minLength,
  this.maxLength,
  this.required = false,
  this.placeholder,
  this.value,
}) : super(type: ComponentType.textInput);