instance property
PolyvLiveScenesPlatform
get
instance
The default instance of PolyvLiveScenesPlatform to use.
Defaults to MethodChannelPolyvLiveScenes.
Implementation
static PolyvLiveScenesPlatform get instance => _instance;
set
instance
(PolyvLiveScenesPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends PolyvLiveScenesPlatform when they register themselves.
Implementation
static set instance(PolyvLiveScenesPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}