Unverified Commit 31e881f3 authored by chunhtai's avatar chunhtai Committed by GitHub

remove ununsed deprecated field (#64076)

parent d69ae363
...@@ -5214,13 +5214,6 @@ class RichText extends MultiChildRenderObjectWidget { ...@@ -5214,13 +5214,6 @@ class RichText extends MultiChildRenderObjectWidget {
this.strutStyle, this.strutStyle,
this.textWidthBasis = TextWidthBasis.parent, this.textWidthBasis = TextWidthBasis.parent,
this.textHeightBehavior, this.textHeightBehavior,
@Deprecated(
'This parameter is a temporary flag to migrate the internal tests and '
'should not be used in other contexts. For more details, see '
'https://github.com/flutter/flutter/issues/59316. '
'This feature was deprecated after v1.19.0.'
)
bool applyTextScaleFactorToWidgetSpan = false,
}) : assert(text != null), }) : assert(text != null),
assert(textAlign != null), assert(textAlign != null),
assert(softWrap != null), assert(softWrap != null),
......
...@@ -388,13 +388,6 @@ class Text extends StatelessWidget { ...@@ -388,13 +388,6 @@ class Text extends StatelessWidget {
this.semanticsLabel, this.semanticsLabel,
this.textWidthBasis, this.textWidthBasis,
this.textHeightBehavior, this.textHeightBehavior,
@Deprecated(
'This parameter is a temporary flag to migrate the internal tests and '
'should not be used in other contexts. For more details, please check '
'https://github.com/flutter/flutter/issues/59316. '
'This feature was deprecated after v1.19.0.'
)
bool applyTextScaleFactorToWidgetSpan = false,
}) : assert( }) : assert(
textSpan != null, textSpan != null,
'A non-null TextSpan must be provided to a Text.rich widget.', 'A non-null TextSpan must be provided to a Text.rich widget.',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment