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