findMobileUpstreamDragHandle static method
Implementation
static Finder findMobileUpstreamDragHandle([Finder? superReaderFinder]) {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
case TargetPlatform.iOS:
return find.byKey(DocumentKeys.upstreamHandle);
case TargetPlatform.macOS:
case TargetPlatform.windows:
case TargetPlatform.linux:
case TargetPlatform.fuchsia:
return FindsNothing();
}
}