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