instance property

The default instance of FaceVerificationPlatform to use.

Defaults to MethodChannelFaceVerification.

Implementation

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

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

Implementation

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