@ -957,7 +957,6 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
obscureText:
obscureText:
false , / / This is a non - private text field that does not require obfuscation .
false , / / This is a non - private text field that does not require obfuscation .
offset: position ,
offset: position ,
onCaretChanged: null ,
rendererIgnoresPointer: true ,
rendererIgnoresPointer: true ,
cursorWidth: 2.0 ,
cursorWidth: 2.0 ,
cursorHeight: null ,
cursorHeight: null ,
@ -1007,7 +1006,6 @@ class _Editable extends MultiChildRenderObjectWidget {
required this . obscuringCharacter ,
required this . obscuringCharacter ,
required this . obscureText ,
required this . obscureText ,
required this . offset ,
required this . offset ,
this . onCaretChanged ,
this . rendererIgnoresPointer = false ,
this . rendererIgnoresPointer = false ,
required this . cursorWidth ,
required this . cursorWidth ,
this . cursorHeight ,
this . cursorHeight ,
@ -1059,7 +1057,6 @@ class _Editable extends MultiChildRenderObjectWidget {
final TextHeightBehavior ? textHeightBehavior ;
final TextHeightBehavior ? textHeightBehavior ;
final TextWidthBasis textWidthBasis ;
final TextWidthBasis textWidthBasis ;
final ViewportOffset offset ;
final ViewportOffset offset ;
final CaretChangedHandler ? onCaretChanged ;
final bool rendererIgnoresPointer ;
final bool rendererIgnoresPointer ;
final double cursorWidth ;
final double cursorWidth ;
final double ? cursorHeight ;
final double ? cursorHeight ;
@ -1096,7 +1093,6 @@ class _Editable extends MultiChildRenderObjectWidget {
locale: locale ? ? Localizations . maybeLocaleOf ( context ) ,
locale: locale ? ? Localizations . maybeLocaleOf ( context ) ,
selection: value . selection ,
selection: value . selection ,
offset: offset ,
offset: offset ,
onCaretChanged: onCaretChanged ,
ignorePointer: rendererIgnoresPointer ,
ignorePointer: rendererIgnoresPointer ,
obscuringCharacter: obscuringCharacter ,
obscuringCharacter: obscuringCharacter ,
obscureText: obscureText ,
obscureText: obscureText ,
@ -1138,7 +1134,6 @@ class _Editable extends MultiChildRenderObjectWidget {
. . locale = locale ? ? Localizations . maybeLocaleOf ( context )
. . locale = locale ? ? Localizations . maybeLocaleOf ( context )
. . selection = value . selection
. . selection = value . selection
. . offset = offset
. . offset = offset
. . onCaretChanged = onCaretChanged
. . ignorePointer = rendererIgnoresPointer
. . ignorePointer = rendererIgnoresPointer
. . textHeightBehavior = textHeightBehavior
. . textHeightBehavior = textHeightBehavior
. . textWidthBasis = textWidthBasis
. . textWidthBasis = textWidthBasis