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