instance property

The default instance of ShareSpecifiedAppPlatform to use.

Defaults to MethodChannelShareSpecifiedApp.

Implementation

static ShareSpecifiedAppPlatform get instance => _instance;
void instance=(ShareSpecifiedAppPlatform instance)

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

Implementation

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