instance property

CliqitPlatform get instance

The default instance of CliqitPlatform to use.

Defaults to MethodChannelCliqit.

Implementation

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

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

Implementation

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