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