findMobileCaret static method

Finder findMobileCaret([
  1. Finder? superReaderFinder
])

Implementation

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