buildToolbar method
- @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
 - @override
 
- BuildContext context,
 - Rect globalEditableRegion,
 - double textLineHeight,
 - Offset selectionMidpoint,
 - List<
TextSelectionPoint> endpoints, - TextSelectionDelegate delegate,
 - ValueListenable<
ClipboardStatus> ? clipboardStatus, - Offset? lastSecondaryTapDownPosition,
 
override
    Builder for material-style copy/paste text selection toolbar.
Implementation
@Deprecated(
  'Use `contextMenuBuilder` instead. '
  'This feature was deprecated after v3.3.0-0.5.pre.',
)
@override
Widget buildToolbar(
  BuildContext context,
  Rect globalEditableRegion,
  double textLineHeight,
  Offset selectionMidpoint,
  List<TextSelectionPoint> endpoints,
  TextSelectionDelegate delegate,
  ValueListenable<ClipboardStatus>? clipboardStatus,
  Offset? lastSecondaryTapDownPosition,
) {
  return _TextSelectionControlsToolbar(
    globalEditableRegion: globalEditableRegion,
    textLineHeight: textLineHeight,
    selectionMidpoint: selectionMidpoint,
    endpoints: endpoints,
    delegate: delegate,
    clipboardStatus: clipboardStatus,
    handleCut: canCut(delegate) ? () => handleCut(delegate) : null,
    handleCopy: canCopy(delegate) ? () => handleCopy(delegate) : null,
    handlePaste: canPaste(delegate) ? () => handlePaste(delegate) : null,
    handleSelectAll: canSelectAll(delegate) ? () => handleSelectAll(delegate) : null,
  );
}