STABLE property

EnvironmentReleaseChannels STABLE
final

The stable WebView2 Runtime that is released every 4 weeks.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

static final STABLE = EnvironmentReleaseChannels._internalMultiPlatform(
  1,
  () {
    switch (defaultTargetPlatform) {
      case TargetPlatform.windows:
        return 1;
      default:
        break;
    }
    return null;
  },
);