instance property

The default instance of ReceiveSharingIntent to use.

Implementation

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

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

Implementation

static set instance(ReceiveSharingIntent instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}