BETA property

EnvironmentReleaseChannels BETA
final

The Beta release channel that is released every 4 weeks, a week before the stable release.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

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