instance property

YoutubePlayerPlatform get instance

The default instance of YoutubePlayerPlatform to use.

Defaults to MethodChannelYoutubePlayer.

Implementation

static YoutubePlayerPlatform get instance => _instance;
set instance (YoutubePlayerPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends YoutubePlayerPlatform when they register themselves.

Implementation

static set instance(YoutubePlayerPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}