instance property
LocalProxyPlatform
get
instance
The default instance of LocalProxyPlatform to use.
Defaults to MethodChannelLocalProxy.
Implementation
static LocalProxyPlatform get instance => _instance;
set
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;
}