instance property

The default instance of FluttervisionsdkpluginPlatform to use.

Defaults to MethodChannelFluttervisionsdkplugin.

Implementation

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

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

Implementation

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