MutableText constructor

const MutableText(
  1. String value, {
  2. Key? key,
  3. ValueChanged<String>? onChanged,
  4. bool autoCorrect = true,
  5. int? minLines,
  6. TextStyle? style,
  7. int? maxLines,
  8. Locale? locale,
  9. Color? selectionColor,
  10. TextOverflow? overflow,
  11. String? semanticsLabel,
  12. List<TextInputFormatter>? inputFormatters,
  13. bool? softWrap,
  14. StrutStyle? strutStyle,
  15. TextAlign? textAlign,
  16. TextDirection? textDirection,
  17. TextHeightBehavior? textHeightBehavior,
  18. TextScaler? textScaler,
  19. TextWidthBasis? textWidthBasis,
  20. String? placeholder,
  21. EditButtonType buttonType = EditButtonType.pencil,
  22. bool border = false,
})

Implementation

const MutableText(this.value,
    {super.key,
    this.onChanged,
    this.autoCorrect = true,
    this.minLines,
    this.style,
    this.maxLines,
    this.locale,
    this.selectionColor,
    this.overflow,
    this.semanticsLabel,
    this.inputFormatters,
    this.softWrap,
    this.strutStyle,
    this.textAlign,
    this.textDirection,
    this.textHeightBehavior,
    this.textScaler,
    this.textWidthBasis,
    this.placeholder,
    this.buttonType = EditButtonType.pencil,
    this.border = false});