tap method
- FinderBase<
SemanticsNode> finder
Performs a SemanticsAction.tap 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.tap.
Implementation
void tap(finders.FinderBase<SemanticsNode> finder) {
performAction(finder, SemanticsAction.tap);
}