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