instance property

SecurePrintPlatform get instance

The default instance of SecurePrintPlatform to use.

Defaults to MethodChannelSecurePrint.

Implementation

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

Platform-specific implementations should set this to their implementation.

Implementation

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