instance property

CallIntegratePlatform get instance

The default instance of CallIntegratePlatform to use.

Defaults to MethodChannelCallIntegrate.

Implementation

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

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

Implementation

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