DEV property

EnvironmentReleaseChannels DEV
final

The Dev release channel that is released weekly.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

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