instance property

The default instance of ReelevantAnalyticsPlatform to use.

Defaults to MethodChannelReelevantAnalytics.

Implementation

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

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

Implementation

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