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