create static method

TextSelectionControls create(
  1. PasteMethod pasteMethod
)

Implementation

static TextSelectionControls create(PasteMethod pasteMethod) =>
    Platform.isIOS
      ? CupertinoVerificationSelectionControls(pasteMethod)
      : MaterialVerificationSelectionControls(pasteMethod);