instance property

IosReceiptPlatform get instance

The default instance of IosReceiptPlatform to use.

Defaults to MethodChannelIosReceipt.

Implementation

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

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

Implementation

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