instance property

JioInetPlatform get instance

The default instance of JioInetPlatform to use.

Defaults to MethodChannelJioInet.

Implementation

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

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

Implementation

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