instance property

The default instance of VideoPlayerWinPlatform to use.

Defaults to MethodChannelVideoPlayerWin.

Implementation

static VideoPlayerWinPlatform get instance => _instance;
void instance=(VideoPlayerWinPlatform instance)

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

Implementation

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