Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
3d2e65f7
Unverified
Commit
3d2e65f7
authored
Feb 09, 2021
by
Kate Lovett
Committed by
GitHub
Feb 09, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Remove deprecated Typematcher (#73751)" (#75734)
This reverts commit
fe003535
.
parent
fe003535
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+17
-0
No files found.
packages/flutter/lib/src/widgets/framework.dart
View file @
3d2e65f7
...
...
@@ -258,6 +258,23 @@ class GlobalObjectKey<T extends State<StatefulWidget>> extends GlobalKey<T> {
}
}
/// This class is a work-around for the "is" operator not accepting a variable value as its right operand.
///
/// This class is deprecated. It will be deleted soon.
// TODO(a14n): Remove this when it goes to stable, https://github.com/flutter/flutter/pull/44189
@Deprecated
(
'TypeMatcher has been deprecated because it is no longer used in framework(only in deprecated methods). '
'This feature was deprecated after v1.12.1.'
)
@optionalTypeArgs
class
TypeMatcher
<
T
>
{
/// Creates a type matcher for the given type parameter.
const
TypeMatcher
();
/// Returns true if the given object is of type `T`.
bool
check
(
dynamic
object
)
=>
object
is
T
;
}
/// Describes the configuration for an [Element].
///
/// Widgets are the central class hierarchy in the Flutter framework. A widget
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment