FINISHED property

CustomTabsNavigationEventType FINISHED
final

Sent when the tab has finished loading a page.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

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