instance property

The default instance of M7LivelynessDetectionPlatform to use.

Defaults to MethodChannelM7LivelynessDetection.

Implementation

static M7LivelynessDetectionPlatform get instance => _instance;
void instance=(M7LivelynessDetectionPlatform instance)

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

Implementation

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