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