instance property

The default instance of WalletConnectV2Platform to use.

Defaults to MethodChannelWalletConnectV2.

Implementation

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

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

Implementation

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