instance property

The default instance of WebviewWinFloatingPlatform to use.

Defaults to MethodChannelWebviewWinFloating.

Implementation

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

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

Implementation

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