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