instance property

The default instance of TcmppFlutterExoplayerPlatform to use.

Defaults to MethodChannelTcmppFlutterExoplayer.

Implementation

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

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

Implementation

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