TextAreaClearable constructor

TextAreaClearable({
  1. @required String? label,
  2. @required bool? readOnly,
  3. @required bool? enabled,
  4. String? helperHint,
  5. int? maxlength,
  6. TextInputType? keyboardType,
  7. AutovalidateMode? autovalidateMode,
  8. bool enableSuggestions = false,
  9. ValueChanged<String>? onChanged,
  10. String? validator(
    1. String?
    )?,
  11. List<TextInputFormatter>? inputFormatters,
  12. int? maxlines,
  13. TextEditingController? textCtrl,
})

Implementation

TextAreaClearable(
    {@required this.label,
    @required this.readOnly,
    @required this.enabled,
    this.helperHint,
    this.maxlength,
    this.keyboardType,
    this.autovalidateMode,
    this.enableSuggestions = false,
    this.onChanged,
    this.validator,
    this.inputFormatters,
    this.maxlines,
    this.textCtrl});