instance property

NordicIdPlatform instance

The default instance of NordicIdPlatform to use.

Defaults to MethodChannelNordicId.

Implementation

static NordicIdPlatform get instance => _instance;
void instance=(NordicIdPlatform instance)

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

Implementation

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