findNext method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()])
  2. @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

@SupportedPlatforms(
  platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()],
)
@Deprecated("Use FindInteractionController.findNext instead")
Future<void> findNext({required bool forward}) {
  throw UnimplementedError(
    '${PlatformInAppWebViewControllerMethod.findNext.name} is not implemented on the current platform',
  );
}