instance property

The default instance of KntBaseMonetizedPlatform to use.

Defaults to MethodChannelKntBaseMonetized.

Implementation

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

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

Implementation

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