handleCut method

  1. @override
void handleCut(
  1. TextSelectionDelegate delegate
)
override

Call TextSelectionDelegate.cutSelection to cut current selection.

This is called by subclasses when their cut affordance is activated by the user.

Implementation

@override
void handleCut(TextSelectionDelegate delegate) =>
    controls.handleCut(delegate);