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