instance property

HumanDetectionPlatform get instance

The default instance of HumanDetectionPlatform to use.

Defaults to MethodChannelHumanDetection.

Implementation

static HumanDetectionPlatform get instance => _instance;
set instance (HumanDetectionPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends HumanDetectionPlatform when they register themselves.

Implementation

static set instance(HumanDetectionPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}