@@ -3286,10 +3286,6 @@ class EditableTextState extends State<EditableText> with AutomaticKeepAliveClien
32863286 textWidthBasis: widget.textWidthBasis,
32873287 obscuringCharacter: widget.obscuringCharacter,
32883288 obscureText: widget.obscureText,
3289- autocorrect: widget.autocorrect,
3290- smartDashesType: widget.smartDashesType,
3291- smartQuotesType: widget.smartQuotesType,
3292- enableSuggestions: widget.enableSuggestions,
32933289 offset: offset,
32943290 onCaretChanged: _handleCaretChanged,
32953291 rendererIgnoresPointer: widget.rendererIgnoresPointer,
@@ -3392,10 +3388,6 @@ class _Editable extends MultiChildRenderObjectWidget {
33923388 this .locale,
33933389 required this .obscuringCharacter,
33943390 required this .obscureText,
3395- required this .autocorrect,
3396- required this .smartDashesType,
3397- required this .smartQuotesType,
3398- required this .enableSuggestions,
33993391 required this .offset,
34003392 this .onCaretChanged,
34013393 this .rendererIgnoresPointer = false ,
@@ -3452,10 +3444,6 @@ class _Editable extends MultiChildRenderObjectWidget {
34523444 final bool obscureText;
34533445 final TextHeightBehavior ? textHeightBehavior;
34543446 final TextWidthBasis textWidthBasis;
3455- final bool autocorrect;
3456- final SmartDashesType smartDashesType;
3457- final SmartQuotesType smartQuotesType;
3458- final bool enableSuggestions;
34593447 final ViewportOffset offset;
34603448 final CaretChangedHandler ? onCaretChanged;
34613449 final bool rendererIgnoresPointer;
0 commit comments