@@ -3878,9 +3878,8 @@ class SemanticsConfiguration {
3878
3878
/// This is a request to increase the value represented by the widget. For
3879
3879
/// example, this action might be recognized by a slider control.
3880
3880
///
3881
- /// If [this.value] is set, [increasedValue] must also be provided and
3882
- /// [onIncrease] must ensure that [this.value] will be set to
3883
- /// [increasedValue] .
3881
+ /// If [value] is set, [increasedValue] must also be provided and
3882
+ /// [onIncrease] must ensure that [value] will be set to [increasedValue] .
3884
3883
///
3885
3884
/// VoiceOver users on iOS can trigger this action by swiping up with one
3886
3885
/// finger. TalkBack users on Android can trigger this action by pressing the
@@ -3897,9 +3896,8 @@ class SemanticsConfiguration {
3897
3896
/// This is a request to decrease the value represented by the widget. For
3898
3897
/// example, this action might be recognized by a slider control.
3899
3898
///
3900
- /// If [this.value] is set, [decreasedValue] must also be provided and
3901
- /// [onDecrease] must ensure that [this.value] will be set to
3902
- /// [decreasedValue] .
3899
+ /// If [value] is set, [decreasedValue] must also be provided and
3900
+ /// [onDecrease] must ensure that [value] will be set to [decreasedValue] .
3903
3901
///
3904
3902
/// VoiceOver users on iOS can trigger this action by swiping down with one
3905
3903
/// finger. TalkBack users on Android can trigger this action by pressing the
@@ -4812,11 +4810,11 @@ class SemanticsConfiguration {
4812
4810
_setFlag (SemanticsFlag .isReadOnly, value);
4813
4811
}
4814
4812
4815
- /// Whether [this. value] should be obscured.
4813
+ /// Whether [value] should be obscured.
4816
4814
///
4817
4815
/// This option is usually set in combination with [isTextField] to indicate
4818
4816
/// that the text field contains a password (or other sensitive information).
4819
- /// Doing so instructs screen readers to not read out [this. value] .
4817
+ /// Doing so instructs screen readers to not read out [value] .
4820
4818
bool get isObscured => _hasFlag (SemanticsFlag .isObscured);
4821
4819
set isObscured (bool value) {
4822
4820
_setFlag (SemanticsFlag .isObscured, value);
@@ -4844,7 +4842,7 @@ class SemanticsConfiguration {
4844
4842
}
4845
4843
4846
4844
/// The currently selected text (or the position of the cursor) within
4847
- /// [this. value] if this node represents a text field.
4845
+ /// [value] if this node represents a text field.
4848
4846
TextSelection ? get textSelection => _textSelection;
4849
4847
TextSelection ? _textSelection;
4850
4848
set textSelection (TextSelection ? value) {
0 commit comments