instance property

ExpresspaySdkPlatform get instance

The default instance of ExpresspaySdkPlatform to use.

Defaults to MethodChannelExpresspaySdk.

Implementation

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

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

Implementation

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