instance property

NoTapjackPlatform get instance

The current platform-specific instance.

Implementation

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

Sets the platform-specific instance. Called by platform implementations.

Implementation

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