FAILURE_MESSAGING_ERROR property

CustomTabsPostMessageResultType FAILURE_MESSAGING_ERROR
final

Indicates that the postMessage request has failed due to an internal error on the browser message channel.

Officially Supported Platforms/Implementations:

  • Android native WebView

Implementation

static final FAILURE_MESSAGING_ERROR =
    CustomTabsPostMessageResultType._internalMultiPlatform(-3, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return -3;
    default:
      break;
  }
  return null;
});