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