instance property

SmartSplashKitPlatform get instance

The default instance of SmartSplashKitPlatform to use.

Implementation

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

Platform-specific implementations should set this with their own platform-specific class that extends SmartSplashKitPlatform.

Implementation

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