FXTextArea constructor

FXTextArea({
  1. Key? key,
  2. required String title,
  3. required dynamic onChanged(
    1. String
    ),
  4. String defaultValue = "",
  5. int? maxLength,
  6. bool showCounter = true,
  7. String placeholder = "请输入内容",
})

Implementation

FXTextArea({
  Key? key,
  required this.title,
  required this.onChanged,
  this.defaultValue = "",
  this.maxLength,
  this.showCounter = true,
  this.placeholder = "请输入内容",
}) : super(key: key);