WINDOW property
Adds the new browser window as a separate new window from the main window.
Officially Supported Platforms/Implementations:
- MacOS
- Windows
Implementation
static final WINDOW = WindowType._internalMultiPlatform('WINDOW', () {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
return 'WINDOW';
case TargetPlatform.windows:
return 'WINDOW';
default:
break;
}
return null;
});