findMobileCaretDragHandle static method
Finder
findMobileCaretDragHandle(
[ - Finder? superEditorFinder
])
Implementation
static Finder findMobileCaretDragHandle([Finder? superEditorFinder]) {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return find.byKey(DocumentKeys.androidCaretHandle);
case TargetPlatform.iOS:
return find.byKey(DocumentKeys.caret);
case TargetPlatform.macOS:
case TargetPlatform.windows:
case TargetPlatform.linux:
case TargetPlatform.fuchsia:
return FindsNothing();
}
}