CHILD property

WindowType CHILD
final

Adds the new browser window as a child window of the main window.

Officially Supported Platforms/Implementations:

  • MacOS

Implementation

static final CHILD = WindowType._internalMultiPlatform('CHILD', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.macOS:
      return 'CHILD';
    default:
      break;
  }
  return null;
});