createPlatformJavaScriptReplyProxy method

PlatformJavaScriptReplyProxy createPlatformJavaScriptReplyProxy(
  1. PlatformJavaScriptReplyProxyCreationParams params
)

Creates a new PlatformJavaScriptReplyProxy.

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

Implementation

PlatformJavaScriptReplyProxy createPlatformJavaScriptReplyProxy(
  PlatformJavaScriptReplyProxyCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformJavaScriptReplyProxy is not implemented on the current platform.',
  );
}