instance property

The default instance of JweEncryptionPackagePlatform to use.

Defaults to MethodChannelJweEncryptionPackage.

Implementation

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

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

Implementation

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