instance property

The default instance of ProxyManagerPlatform to use.

Defaults to MethodChannelProxyManager.

Implementation

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

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

Implementation

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