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