instance property

RewardsModulePlatform get instance

The default instance of RewardsModulePlatform to use.

Defaults to MethodChannelRewardsModule.

Implementation

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

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

Implementation

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