instance property

IntlcvPlatform get instance

The default instance of IntlcvPlatform to use.

Defaults to MethodChannelIntlcv.

Implementation

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

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

Implementation

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