dismiss method
- FinderBase<
SemanticsNode> finder
Performs a SemanticsAction.dismiss action on the SemanticsNode
found by finder.
Throws a StateError if:
- The given
finderreturns zero or more than one result. - The SemanticsNode found with
finderdoes not support SemanticsAction.dismiss.
Implementation
void dismiss(finders.FinderBase<SemanticsNode> finder) {
performAction(finder, SemanticsAction.dismiss);
}