instance property

SignifyVisionPlatform get instance

The default instance of SignifyVisionPlatform to use.

Defaults to MethodChannelSignifyVision.

Implementation

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

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

Implementation

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