CANARY property

EnvironmentReleaseChannels CANARY
final

The Canary release channel that is released daily.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

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