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