instance property

JwtioPlatform get instance

The default instance of JwtioPlatform to use.

Defaults to MethodChannelJwtson.

Implementation

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

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

Implementation

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