instance property

ChivoxAienginePlatform get instance

The default instance of ChivoxAienginePlatform to use.

Defaults to MethodChannelChivoxAiengine.

Implementation

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

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

Implementation

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