SUCCESS property

CustomTabsPostMessageResultType SUCCESS
final

Indicates that the postMessage request was accepted.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

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