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