instance property

BestplayerPlatform get instance

The default instance of BestplayerPlatform to use.

Defaults to MethodChannelBestplayer.

Implementation

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

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

Implementation

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