instance property
PaymentGatewayPluginPlatform
get
instance
The default instance of PaymentGatewayPluginPlatform to use.
Defaults to MethodChannelPaymentGatewayPlugin.
Implementation
static PaymentGatewayPluginPlatform get instance => _instance;
set
instance
(PaymentGatewayPluginPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends PaymentGatewayPluginPlatform when they register themselves.
Implementation
static set instance(PaymentGatewayPluginPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}