instance property
AppIntegrityCheckerPlatform
get
instance
The default instance of AppIntegrityCheckerPlatform to use.
Defaults to MethodChannelAppIntegrityChecker.
Implementation
static AppIntegrityCheckerPlatform get instance => _instance;
set
instance
(AppIntegrityCheckerPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends AppIntegrityCheckerPlatform when they register themselves.
Implementation
static set instance(AppIntegrityCheckerPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}