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