FAILED property

CustomTabsNavigationEventType FAILED
final

Sent when the tab couldn't finish loading due to a failure.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

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