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