instance property

CsTapjoyAdPlatform get instance

The default instance of CsTapjoyAdPlatform to use.

Defaults to MethodChannelCsTapjoyAd.

Implementation

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

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

Implementation

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