NONE property
final
No release channel. Passing only this value results in HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND).
Officially Supported Platforms/Implementations:
- Windows WebView2
Implementation
static final NONE = EnvironmentReleaseChannels._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 0;
default:
break;
}
return null;
});