instance property

The default instance of DeeplinkConnectPlatform to use.

Defaults to MethodChannelDeeplinkConnect.

Implementation

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

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

Implementation

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