MutableText constructor

const MutableText(
  1. String value, {
  2. void onChanged(
    1. String
    )?,
  3. void onEditingComplete()?,
  4. void onEditingStarted()?,
  5. int maxLines = 1,
  6. int? minLines,
  7. String? placeholder,
  8. MutableTextTrigger trigger = MutableTextTrigger.click,
  9. MutableTextInputType inputType = MutableTextInputType.text,
  10. MutableTextStyle style = MutableTextStyle.inline,
  11. Key? key,
})

Implementation

const MutableText(
  this.value, {
  this.onChanged,
  this.onEditingComplete,
  this.onEditingStarted,
  this.maxLines = 1,
  this.minLines,
  this.placeholder,
  this.trigger = MutableTextTrigger.click,
  this.inputType = MutableTextInputType.text,
  this.style = MutableTextStyle.inline,
  super.key,
});