handleCopy method

  1. @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
void handleCopy(
  1. TextSelectionDelegate delegate
)

Call TextSelectionDelegate.copySelection to copy current selection.

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

Implementation

@Deprecated(
  'Use `contextMenuBuilder` instead. '
  'This feature was deprecated after v3.3.0-0.5.pre.',
)
void handleCopy(TextSelectionDelegate delegate) {
  delegate.copySelection(SelectionChangedCause.toolbar);
}