instance property

The default instance of SecureDeviceCheckPlatform to use.

Implementation

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

Platform-specific implementations should set this with their own platform-specific class that extends SecureDeviceCheckPlatform.

Implementation

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