findNext method

  1. @Deprecated("Use FindInteractionController.findNext instead")
Future<void> findNext({
  1. required bool forward,
})

Use PlatformFindInteractionController.findNext instead.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView

Parameters - Officially Supported Platforms/Implementations:

  • forward: all platforms

Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.

Implementation

@Deprecated("Use FindInteractionController.findNext instead")
Future<void> findNext({required bool forward}) =>
    platform.findNext(forward: forward);