onFindResultReceived property

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

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 PlatformWebViewCreationParams.isPropertySupported method to check if this property is supported at runtime.

Implementation

@SupportedPlatforms(
  platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()],
)
@Deprecated('Use FindInteractionController.onFindResultReceived instead')
final void Function(
  T controller,
  int activeMatchOrdinal,
  int numberOfMatches,
  bool isDoneCounting,
)?
onFindResultReceived;