instance property

The default instance of PPAsaAttributionPlatform to use.

Defaults to MethodChannelPPAsaAttribution.

Implementation

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

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

Implementation

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