instance property

The default instance of EncryptionDecryptionsPlatform to use.

Defaults to MethodChannelEncryptionDecryptions.

Implementation

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

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

Implementation

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