mutable method

Widget mutable(
  1. ValueChanged<String> onChanged, {
  2. String? placeholder,
  3. int? minLines,
  4. bool border = false,
  5. bool autoCorrect = true,
  6. EditButtonType buttonType = EditButtonType.pencil,
})

Implementation

Widget mutable(ValueChanged<String> onChanged,
        {String? placeholder,
        int? minLines,
        bool border = false,
        bool autoCorrect = true,
        EditButtonType buttonType = EditButtonType.pencil}) =>
    MutableText(data ?? "",
        placeholder: placeholder,
        minLines: minLines,
        maxLines: maxLines,
        autoCorrect: autoCorrect,
        buttonType: buttonType,
        textAlign: textAlign,
        style: style,
        textWidthBasis: textWidthBasis,
        textScaler: textScaler,
        textHeightBehavior: textHeightBehavior,
        textDirection: textDirection,
        strutStyle: strutStyle,
        softWrap: softWrap,
        key: key,
        semanticsLabel: semanticsLabel,
        overflow: overflow,
        selectionColor: selectionColor,
        locale: locale,
        border: border,
        onChanged: onChanged);