instance property

JWPlayerPlatform instance

The default instance of FlutterPocPlatform to use.

Defaults to MethodChannelFlutterPoc.

Implementation

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

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

Implementation

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