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