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