HANDLE_ALL_URLS property

CustomTabsRelationType HANDLE_ALL_URLS
final

Requests the ability to handle all URLs from a given origin.

Officially Supported Platforms/Implementations:

  • Android native WebView

Implementation

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