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