instance property

The default instance of MultiWindowInterface to use.

Implementation

static MultiWindowInterface get instance => _instance;
void instance=(MultiWindowInterface instance)

Platform-specific plugins should set this with their own platform-specific class that extends MultiWindowInterface when they register themselves.

Implementation

static set instance(MultiWindowInterface instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}