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