instance property

The default instance of FlutterIapVerificatorPlatform to use.

Defaults to MethodChannelFlutterIapVerificator.

Implementation

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

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

Implementation

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