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