Window.internal constructor

Window.internal({
  1. required WindowController internalWindowController,
  2. required String href,
  3. int outerWidth = 0,
  4. int outerHeight = 0,
})

An internal constructor that's NOT part of "dart:html".

This API is not for public use. We may do backwards-incompatible changes.

Implementation

Window.internal({
  required this.internalWindowController,
  required String href,
  this.outerWidth = 0,
  this.outerHeight = 0,
})  : _initialHref = href,
      super.internal();