STARTED property

CustomTabsNavigationEventType STARTED
final

Sent when the tab has started loading a page.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

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