SUCCESS property

Indicates that the postMessage request was accepted.

Officially Supported Platforms/Implementations:

  • Android native WebView

Implementation

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