ABORTED property

CustomTabsNavigationEventType ABORTED
final

Sent when loading was aborted by a user action before it finishes like clicking on a link or refreshing the page.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

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