instance property

VpnNoticePlatform get instance

The active platform implementation. Defaults to MethodChannelVpnNotice.

Implementation

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

Implementation

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