onFindResultReceived method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()])
  2. @Deprecated('Use FindInteractionController.onFindResultReceived instead')
void onFindResultReceived(
  1. int activeMatchOrdinal,
  2. int numberOfMatches,
  3. bool isDoneCounting
)

Use FindInteractionController.onFindResultReceived instead.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView

Parameters - Officially Supported Platforms/Implementations:

  • activeMatchOrdinal: all platforms
  • numberOfMatches: all platforms
  • isDoneCounting: all platforms

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

Implementation

@SupportedPlatforms(
  platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()],
)
@Deprecated('Use FindInteractionController.onFindResultReceived instead')
void onFindResultReceived(
  int activeMatchOrdinal,
  int numberOfMatches,
  bool isDoneCounting,
) {}