instance property

UniversalSharePlatform get instance

The default instance of UniversalSharePlatform to use.

Defaults to MethodChannelUniversalShare.

Implementation

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

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

Implementation

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