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