MutableText constructor
const
MutableText(
- String value, {
- void onChanged()?,
- void onEditingComplete()?,
- void onEditingStarted()?,
- int maxLines = 1,
- int? minLines,
- String? placeholder,
- MutableTextTrigger trigger = MutableTextTrigger.click,
- MutableTextInputType inputType = MutableTextInputType.text,
- MutableTextStyle style = MutableTextStyle.inline,
- 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,
});