postWebMessage method

Future<void> postWebMessage({
  1. required WebMessage message,
  2. WebUri? targetOrigin,
})

Post a message to main frame. The embedded application can restrict the messages to a certain target origin. See HTML5 spec for how target origin can be used.

A target origin can be set as a wildcard ("*"). However this is not recommended.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • message: all platforms
  • targetOrigin: all platforms

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

Implementation

Future<void> postWebMessage({
  required WebMessage message,
  WebUri? targetOrigin,
}) => platform.postWebMessage(message: message, targetOrigin: targetOrigin);