MultilineTextInput constructor

const MultilineTextInput({
  1. int maxLine = 2,
  2. String? placeholder,
  3. TextEditingController? textEditingController,
  4. String? errorText,
  5. dynamic onChanged(
    1. String
    )?,
})

Implementation

const MultilineTextInput({
  this.maxLine = 2,
  this.placeholder,
  this.textEditingController,
  this.errorText,
  this.onChanged,
});