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