instance property

FullSdk get instance

The default instance of FullSdk to use.

Defaults to MethodChannelFull.

Implementation

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

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

Implementation

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