NORMAL property
final
Indicates that the browser process ended normally.
Officially Supported Platforms/Implementations:
- Windows WebView2
Implementation
static final NORMAL = BrowserProcessExitKind._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 0;
default:
break;
}
return null;
});