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