TextAreaConfig constructor

const TextAreaConfig({
  1. int? minLines,
  2. int? maxLines,
  3. bool? expands,
  4. bool? isDisabled,
  5. bool? isRequired,
  6. bool? autocorrect,
})

Implementation

const TextAreaConfig({
  this.minLines,
  this.maxLines,
  this.expands,
  this.isDisabled,
  this.isRequired,
  this.autocorrect,
});