findAllAsync method

  1. @Deprecated("Use FindInteractionController.findAll instead")
Future<void> findAllAsync({
  1. required String find,
})

Use PlatformFindInteractionController.findAll instead.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView

Parameters - Officially Supported Platforms/Implementations:

  • find: all platforms

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

Implementation

@Deprecated("Use FindInteractionController.findAll instead")
Future<void> findAllAsync({required String find}) =>
    platform.findAllAsync(find: find);