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