instance property

HdkPlatform get instance

The default instance of HdkPlatform to use.

Defaults to MethodChannelHdk.

Implementation

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

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

Implementation

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