LEAST_STABLE property

EnvironmentChannelSearchKind LEAST_STABLE
final

Search for a release channel from least to most stable: Canary -> Dev -> Beta -> WebView2 Runtime.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

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