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