ListItemTextInput constructor

const ListItemTextInput({
  1. Key? key,
  2. String hintText = "请输入",
  3. int minLines = 1,
  4. int? maxLines,
  5. dynamic onChange(
    1. String
    )?,
  6. TextInputType? textInputType,
  7. String? defaultValue,
  8. int? maxLength = 5000,
  9. bool enable = true,
})

Implementation

const ListItemTextInput({Key? key, this.hintText = "请输入", this.minLines = 1, this.maxLines, this.onChange, this.textInputType, this.defaultValue, this.maxLength = 5000, this.enable = true,}) : super(key: key);