createPlatformFindInteractionController method

PlatformFindInteractionController createPlatformFindInteractionController(
  1. PlatformFindInteractionControllerCreationParams params
)

Creates a new PlatformFindInteractionController.

This function should only be called by the app-facing package. Look at using FindInteractionController in flutter_inappwebview_forge instead.

Implementation

PlatformFindInteractionController createPlatformFindInteractionController(
  PlatformFindInteractionControllerCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformFindInteractionController is not implemented on the current platform.',
  );
}