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