instance property

LoaderGamifiedPlatform get instance

The default instance of LoaderGamifiedPlatform to use.

Defaults to MethodChannelLoaderGamified.

Implementation

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

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

Implementation

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