instance property

The default instance of LocalProxyPlatform to use.

Defaults to MethodChannelLocalProxy.

Implementation

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

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

Implementation

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